diff options
author | Marek Olšák <[email protected]> | 2012-12-09 00:02:46 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-12-12 13:09:54 +0100 |
commit | 448cd5ea60403576c3eec86ffb2b892e78b9dfe0 (patch) | |
tree | 395a69bf618864ee3af1263a5531fea7a3c64f01 /src/gallium/drivers/r300/r300_query.c | |
parent | 1d0bf69f831e138a05a282e59746f20141046fd6 (diff) |
winsys/radeon: don't use BIND flags, add a flag for the cache bufmgr instead
Diffstat (limited to 'src/gallium/drivers/r300/r300_query.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_query.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_query.c b/src/gallium/drivers/r300/r300_query.c index 3ea6be7ef57..4443362d102 100644 --- a/src/gallium/drivers/r300/r300_query.c +++ b/src/gallium/drivers/r300/r300_query.c @@ -57,8 +57,8 @@ static struct pipe_query *r300_create_query(struct pipe_context *pipe, else q->num_pipes = r300screen->info.r300_num_gb_pipes; - q->buf = r300->rws->buffer_create(r300->rws, 4096, 4096, - PIPE_BIND_CUSTOM, RADEON_DOMAIN_GTT); + q->buf = r300->rws->buffer_create(r300->rws, 4096, 4096, TRUE, + RADEON_DOMAIN_GTT); if (!q->buf) { FREE(q); return NULL; |