summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/softpipe/sp_query.c
diff options
context:
space:
mode:
authorZack Rusin <zackr@vmware.com>2010-06-03 16:12:08 -0400
committerZack Rusin <zackr@vmware.com>2010-06-08 06:28:11 -0400
commit34f7681669987bc804f4603463f2fa3f82bc844f (patch)
tree01333d9d219220d2c018f941f177590f20079ec9 /src/gallium/drivers/softpipe/sp_query.c
parent3a7fc2e4f3de23ab384ca679444971693a35a4c7 (diff)
gallium: adjust the query interface to support custom types
we need to change it to support composite types
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_query.c')
-rw-r--r--src/gallium/drivers/softpipe/sp_query.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_query.c b/src/gallium/drivers/softpipe/sp_query.c
index b959af63aff..ae52c22b3ee 100644
--- a/src/gallium/drivers/softpipe/sp_query.c
+++ b/src/gallium/drivers/softpipe/sp_query.c
@@ -118,9 +118,10 @@ static boolean
softpipe_get_query_result(struct pipe_context *pipe,
struct pipe_query *q,
boolean wait,
- uint64_t *result )
+ void *vresult)
{
struct softpipe_query *sq = softpipe_query(q);
+ uint64_t *result = (uint64_t*)vresult;
*result = sq->end - sq->start;
return TRUE;
}