diff options
author | Brian Paul <[email protected]> | 2011-01-18 09:57:52 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-18 09:59:28 -0700 |
commit | c97e4532bb517e52c09ce15246423fc861c13ea3 (patch) | |
tree | 6f248814cadfc75ea01dc88165b4b79197dd3f83 /src/gallium/drivers/softpipe/sp_context.h | |
parent | 843f537cfbf988647fec5a2aa584d5f817e8acd3 (diff) |
softpipe: s/tex_cache/fragment_tex_cache/
Just to be more consistant with the vertex and geometry tex cache fields.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.h')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.h b/src/gallium/drivers/softpipe/sp_context.h index 903574b7e19..6e20b433611 100644 --- a/src/gallium/drivers/softpipe/sp_context.h +++ b/src/gallium/drivers/softpipe/sp_context.h @@ -174,7 +174,7 @@ struct softpipe_context { struct softpipe_tile_cache *zsbuf_cache; unsigned tex_timestamp; - struct softpipe_tex_tile_cache *tex_cache[PIPE_MAX_SAMPLERS]; + struct softpipe_tex_tile_cache *fragment_tex_cache[PIPE_MAX_SAMPLERS]; struct softpipe_tex_tile_cache *vertex_tex_cache[PIPE_MAX_VERTEX_SAMPLERS]; struct softpipe_tex_tile_cache *geometry_tex_cache[PIPE_MAX_GEOMETRY_SAMPLERS]; |