diff options
author | Brian Paul <[email protected]> | 2010-03-08 13:56:44 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-03-08 16:26:43 -0700 |
commit | 44eec2802323b1e6cb47dfcf0aeab6b4cfd1c110 (patch) | |
tree | 47bd4f4659a959e6fd06da481aaa53c42efeb32b /src/gallium/drivers/softpipe/sp_texture.h | |
parent | d73fadf2116f5459f18bd84f48e7ed86773797b0 (diff) |
softpipe: define SP_MAX_TEXTURE_2D/3D_LEVELS
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_texture.h')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_texture.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gallium/drivers/softpipe/sp_texture.h b/src/gallium/drivers/softpipe/sp_texture.h index 2ef64e1e7c3..b54cf33ef5c 100644 --- a/src/gallium/drivers/softpipe/sp_texture.h +++ b/src/gallium/drivers/softpipe/sp_texture.h @@ -33,6 +33,10 @@ #include "pipe/p_video_state.h" +#define SP_MAX_TEXTURE_2D_LEVELS 13 /* 4K x 4K */ +#define SP_MAX_TEXTURE_3D_LEVELS 9 /* 512 x 512 x 512 */ + + struct pipe_context; struct pipe_screen; struct softpipe_context; @@ -42,8 +46,8 @@ struct softpipe_texture { struct pipe_texture base; - unsigned long level_offset[PIPE_MAX_TEXTURE_LEVELS]; - unsigned stride[PIPE_MAX_TEXTURE_LEVELS]; + unsigned long level_offset[SP_MAX_TEXTURE_2D_LEVELS]; + unsigned stride[SP_MAX_TEXTURE_2D_LEVELS]; /* The data is held here: */ |