mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 22:49:13 +02:00
i965g: define BRW_MAX_TEXTURE_2D/3D_LEVELS
This commit is contained in:
parent
44eec28023
commit
e836f35369
2 changed files with 9 additions and 6 deletions
|
|
@ -174,11 +174,11 @@ brw_get_param(struct pipe_screen *screen, int param)
|
|||
case PIPE_CAP_TEXTURE_SHADOW_MAP:
|
||||
return 1;
|
||||
case PIPE_CAP_MAX_TEXTURE_2D_LEVELS:
|
||||
return 11; /* max 1024x1024 */
|
||||
return BRW_MAX_TEXTURE_2D_LEVELS;
|
||||
case PIPE_CAP_MAX_TEXTURE_3D_LEVELS:
|
||||
return 8; /* max 128x128x128 */
|
||||
return BRW_MAX_TEXTURE_3D_LEVELS;
|
||||
case PIPE_CAP_MAX_TEXTURE_CUBE_LEVELS:
|
||||
return 11; /* max 1024x1024 */
|
||||
return BRW_MAX_TEXTURE_2D_LEVELS;
|
||||
case PIPE_CAP_TGSI_FS_COORD_ORIGIN_UPPER_LEFT:
|
||||
case PIPE_CAP_TGSI_FS_COORD_PIXEL_CENTER_HALF_INTEGER:
|
||||
return 1;
|
||||
|
|
|
|||
|
|
@ -100,6 +100,9 @@ struct brw_surface
|
|||
};
|
||||
|
||||
|
||||
#define BRW_MAX_TEXTURE_2D_LEVELS 11 /* max 1024x1024 */
|
||||
#define BRW_MAX_TEXTURE_3D_LEVELS 8 /* max 128x128x128 */
|
||||
|
||||
|
||||
struct brw_texture
|
||||
{
|
||||
|
|
@ -107,9 +110,9 @@ struct brw_texture
|
|||
struct brw_winsys_buffer *bo;
|
||||
struct brw_surface_state ss;
|
||||
|
||||
unsigned *image_offset[PIPE_MAX_TEXTURE_LEVELS];
|
||||
unsigned nr_images[PIPE_MAX_TEXTURE_LEVELS];
|
||||
unsigned level_offset[PIPE_MAX_TEXTURE_LEVELS];
|
||||
unsigned *image_offset[BRW_MAX_TEXTURE_2D_LEVELS];
|
||||
unsigned nr_images[BRW_MAX_TEXTURE_2D_LEVELS];
|
||||
unsigned level_offset[BRW_MAX_TEXTURE_2D_LEVELS];
|
||||
|
||||
boolean compressed;
|
||||
unsigned brw_target;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue