diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/rbug/rbug_context.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gallium/drivers/rbug/rbug_context.c b/src/gallium/drivers/rbug/rbug_context.c index 71bc2168614..026c132786a 100644 --- a/src/gallium/drivers/rbug/rbug_context.c +++ b/src/gallium/drivers/rbug/rbug_context.c @@ -141,12 +141,14 @@ rbug_create_query(struct pipe_context *_pipe, { struct rbug_context *rb_pipe = rbug_context(_pipe); struct pipe_context *pipe = rb_pipe->pipe; + struct pipe_query *query; pipe_mutex_lock(rb_pipe->call_mutex); - return pipe->create_query(pipe, - query_type, - index); + query = pipe->create_query(pipe, + query_type, + index); pipe_mutex_unlock(rb_pipe->call_mutex); + return query; } static void |