diff options
author | Henri Verbeet <[email protected]> | 2011-01-19 19:11:05 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-19 21:47:27 -0700 |
commit | 21148e6a8806736b4487da41b01e2d3c01cbc743 (patch) | |
tree | ab747977253b5026aaaa6867df14a09280fadd02 /src/gallium/drivers/softpipe/sp_context.h | |
parent | 54fdc351ddbda68bd6ef75021dafcdf8654a4342 (diff) |
softpipe: Bind samplers to views instead of the underlying resource.
Signed-off-by: Brian Paul <[email protected]>
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 6e20b433611..035d712d17c 100644 --- a/src/gallium/drivers/softpipe/sp_context.h +++ b/src/gallium/drivers/softpipe/sp_context.h @@ -77,7 +77,7 @@ struct softpipe_context { struct pipe_framebuffer_state framebuffer; struct pipe_poly_stipple poly_stipple; struct pipe_scissor_state scissor; - struct pipe_sampler_view *sampler_views[PIPE_MAX_SAMPLERS]; + struct pipe_sampler_view *fragment_sampler_views[PIPE_MAX_SAMPLERS]; struct pipe_sampler_view *vertex_sampler_views[PIPE_MAX_VERTEX_SAMPLERS]; struct pipe_sampler_view *geometry_sampler_views[PIPE_MAX_GEOMETRY_SAMPLERS]; struct pipe_viewport_state viewport; |