summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/driver_rbug/rbug_context.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/auxiliary/driver_rbug/rbug_context.c')
-rw-r--r--src/gallium/auxiliary/driver_rbug/rbug_context.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/driver_rbug/rbug_context.c b/src/gallium/auxiliary/driver_rbug/rbug_context.c
index e0d92ff8021..225c77ecec1 100644
--- a/src/gallium/auxiliary/driver_rbug/rbug_context.c
+++ b/src/gallium/auxiliary/driver_rbug/rbug_context.c
@@ -738,6 +738,7 @@ rbug_set_sampler_views(struct pipe_context *_pipe,
enum pipe_shader_type shader,
unsigned start,
unsigned num,
+ unsigned unbind_num_trailing_slots,
struct pipe_sampler_view **_views)
{
struct rbug_context *rb_pipe = rbug_context(_pipe);
@@ -766,7 +767,8 @@ rbug_set_sampler_views(struct pipe_context *_pipe,
views = unwrapped_views;
}
- pipe->set_sampler_views(pipe, shader, start, num, views);
+ pipe->set_sampler_views(pipe, shader, start, num,
+ unbind_num_trailing_slots, views);
mtx_unlock(&rb_pipe->call_mutex);
}