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.c | |
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.c')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c index db02d0eae24..2ee21817031 100644 --- a/src/gallium/drivers/softpipe/sp_context.c +++ b/src/gallium/drivers/softpipe/sp_context.c @@ -106,7 +106,7 @@ softpipe_destroy( struct pipe_context *pipe ) for (i = 0; i < PIPE_MAX_SAMPLERS; i++) { sp_destroy_tex_tile_cache(softpipe->fragment_tex_cache[i]); - pipe_sampler_view_reference(&softpipe->sampler_views[i], NULL); + pipe_sampler_view_reference(&softpipe->fragment_sampler_views[i], NULL); } for (i = 0; i < PIPE_MAX_VERTEX_SAMPLERS; i++) { |