aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas Stach <[email protected]>2019-09-16 15:07:53 +0200
committerLucas Stach <[email protected]>2019-10-18 10:12:07 +0000
commit8eea8c9691f082e5a9f172efc600cc40d389177e (patch)
tree12998c05ea9f31fb8a9137de35c9060a4b7602a8
parent024eaa7fec7300d0736f3782f09a9242a0e2586e (diff)
rbug: forward texture_barrier to pipe driver
Signed-off-by: Lucas Stach <[email protected]>
-rw-r--r--src/gallium/auxiliary/driver_rbug/rbug_context.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/driver_rbug/rbug_context.c b/src/gallium/auxiliary/driver_rbug/rbug_context.c
index 20b6f9755b2..7c5a2929d89 100644
--- a/src/gallium/auxiliary/driver_rbug/rbug_context.c
+++ b/src/gallium/auxiliary/driver_rbug/rbug_context.c
@@ -1203,6 +1203,17 @@ rbug_context_texture_subdata(struct pipe_context *_context,
mtx_unlock(&rb_pipe->call_mutex);
}
+static void
+rbug_context_texture_barrier(struct pipe_context *_context, unsigned flags)
+{
+ struct rbug_context *rb_pipe = rbug_context(_context);
+ struct pipe_context *context = rb_pipe->pipe;
+
+ mtx_lock(&rb_pipe->call_mutex);
+ context->texture_barrier(context,
+ flags);
+ mtx_unlock(&rb_pipe->call_mutex);
+}
struct pipe_context *
rbug_context_create(struct pipe_screen *_screen, struct pipe_context *pipe)
@@ -1292,6 +1303,7 @@ rbug_context_create(struct pipe_screen *_screen, struct pipe_context *pipe)
rb_pipe->base.transfer_flush_region = rbug_context_transfer_flush_region;
rb_pipe->base.buffer_subdata = rbug_context_buffer_subdata;
rb_pipe->base.texture_subdata = rbug_context_texture_subdata;
+ rb_pipe->base.texture_barrier = rbug_context_texture_barrier;
rb_pipe->base.flush_resource = rbug_flush_resource;
rb_pipe->pipe = pipe;