diff options
author | Brian Paul <[email protected]> | 2011-02-02 20:43:56 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-02-02 20:43:56 -0700 |
commit | 4629be05098a4cfececcfa98ad88282800ab3a6c (patch) | |
tree | a00a814650df1ea472c568389343687efd334856 /src/gallium/drivers/softpipe/sp_context.h | |
parent | 843f206a342751084cbd55d9fb0fdf78fd310e99 (diff) |
softpipe: rename sampler[] -> fragment_samplers[]
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 cbb2a3b04b1..c91709aef06 100644 --- a/src/gallium/drivers/softpipe/sp_context.h +++ b/src/gallium/drivers/softpipe/sp_context.h @@ -58,7 +58,7 @@ struct softpipe_context { /** Constant state objects */ struct pipe_blend_state *blend; - struct pipe_sampler_state *sampler[PIPE_MAX_SAMPLERS]; + struct pipe_sampler_state *fragment_samplers[PIPE_MAX_SAMPLERS]; struct pipe_sampler_state *vertex_samplers[PIPE_MAX_VERTEX_SAMPLERS]; struct pipe_sampler_state *geometry_samplers[PIPE_MAX_GEOMETRY_SAMPLERS]; struct pipe_depth_stencil_alpha_state *depth_stencil; |