summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/galahad/glhd_context.c
diff options
context:
space:
mode:
authorIlia Mirkin <[email protected]>2014-06-26 19:33:07 -0400
committerIlia Mirkin <[email protected]>2014-07-01 11:34:31 -0400
commit43e4b3e311df3bede930229380a7aa389ac7019a (patch)
tree4dffb0752eb8ac60416156b277074cb3a290efdd /src/gallium/drivers/galahad/glhd_context.c
parent7f1b365f65ed5b95a941cf22f35f480d00739d4b (diff)
gallium: add an index argument to create_query
Signed-off-by: Ilia Mirkin <[email protected]> Reviewed-by: Marek Olšák <[email protected]> Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/drivers/galahad/glhd_context.c')
-rw-r--r--src/gallium/drivers/galahad/glhd_context.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gallium/drivers/galahad/glhd_context.c b/src/gallium/drivers/galahad/glhd_context.c
index 2e61e5924a6..79d549585b7 100644
--- a/src/gallium/drivers/galahad/glhd_context.c
+++ b/src/gallium/drivers/galahad/glhd_context.c
@@ -63,7 +63,8 @@ galahad_context_draw_vbo(struct pipe_context *_pipe,
static struct pipe_query *
galahad_context_create_query(struct pipe_context *_pipe,
- unsigned query_type)
+ unsigned query_type,
+ unsigned index)
{
struct galahad_context *glhd_pipe = galahad_context(_pipe);
struct pipe_context *pipe = glhd_pipe->pipe;
@@ -79,7 +80,8 @@ galahad_context_create_query(struct pipe_context *_pipe,
}
return pipe->create_query(pipe,
- query_type);
+ query_type,
+ index);
}
static void