diff options
author | Dave Airlie <[email protected]> | 2010-09-17 12:47:49 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-09-17 15:29:31 +1000 |
commit | 7c1fcc41be15b6d648f84c8c1870a3a00575a48f (patch) | |
tree | ae08a7619787a20116ef12fc836e2e4a3f568711 /src/gallium/drivers/r600/r600_query.c | |
parent | 0dbcf3b014ff05843bc71235652cd4a0e089bbc9 (diff) |
r600g: move constant buffer creation behind winsys abstraction.
this paves the way for moving to pb bufmgrs now.
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 922d7ace130..12900cce114 100644 --- a/src/gallium/drivers/r600/r600_query.c +++ b/src/gallium/drivers/r600/r600_query.c @@ -79,7 +79,7 @@ static struct pipe_query *r600_create_query(struct pipe_context *ctx, unsigned q q->type = query_type; q->buffer_size = 4096; - q->buffer = radeon_ws_bo(rscreen->rw, q->buffer_size, 1); + q->buffer = radeon_ws_bo(rscreen->rw, q->buffer_size, 1, 0); if (!q->buffer) { FREE(q); return NULL; @@ -109,7 +109,7 @@ static void r600_query_result(struct pipe_context *ctx, struct r600_query *rquer int i; radeon_ws_bo_wait(rscreen->rw, rquery->buffer); - results = radeon_ws_bo_map(rscreen->rw, rquery->buffer); + results = radeon_ws_bo_map(rscreen->rw, rquery->buffer, 0, r600_context(ctx)); for (i = 0; i < rquery->num_results; i += 4) { start = (u64)results[i] | (u64)results[i + 1] << 32; end = (u64)results[i + 2] | (u64)results[i + 3] << 32; |