summaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/rbug/rbug_objects.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/rbug/rbug_objects.c b/src/gallium/drivers/rbug/rbug_objects.c
index db18f2e1c22..320f34d2565 100644
--- a/src/gallium/drivers/rbug/rbug_objects.c
+++ b/src/gallium/drivers/rbug/rbug_objects.c
@@ -153,8 +153,7 @@ rbug_sampler_view_destroy(struct rbug_context *rb_context,
struct rbug_sampler_view *rb_view)
{
pipe_resource_reference(&rb_view->base.texture, NULL);
- rb_context->pipe->sampler_view_destroy(rb_context->pipe,
- rb_view->sampler_view);
+ pipe_sampler_view_reference(&rb_view->sampler_view, NULL);
FREE(rb_view);
}