diff options
author | Marek Olšák <[email protected]> | 2011-11-10 23:38:31 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-11-11 00:03:52 +0100 |
commit | 72c1658554b2d1e90e687340c5db4fec939b3901 (patch) | |
tree | c938e129a282b121bd959bc3985db6490cae0d16 /src/gallium/drivers/r600/r600_query.c | |
parent | 3800fe800bfc7faac6e629e584487c5904a5ef2b (diff) |
r600g: the type of OCCLUSION_PREDICATE result should be boolean
Diffstat (limited to 'src/gallium/drivers/r600/r600_query.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_query.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_query.c b/src/gallium/drivers/r600/r600_query.c index afdb0382d37..ec0d91f0874 100644 --- a/src/gallium/drivers/r600/r600_query.c +++ b/src/gallium/drivers/r600/r600_query.c @@ -42,7 +42,7 @@ static void r600_begin_query(struct pipe_context *ctx, struct pipe_query *query) struct r600_pipe_context *rctx = (struct r600_pipe_context *)ctx; struct r600_query *rquery = (struct r600_query *)query; - rquery->result = 0; + memset(&rquery->result, 0, sizeof(rquery->result)); rquery->results_start = rquery->results_end; r600_query_begin(&rctx->ctx, (struct r600_query *)query); LIST_ADDTAIL(&rquery->list, &rctx->ctx.active_query_list); @@ -76,7 +76,7 @@ static void r600_render_condition(struct pipe_context *ctx, int wait_flag = 0; /* If we already have nonzero result, render unconditionally */ - if (query != NULL && rquery->result != 0) { + if (query != NULL && rquery->result.u64 != 0) { if (rctx->current_render_cond) { r600_render_condition(ctx, NULL, 0); } |