diff options
author | Marek Olšák <[email protected]> | 2016-05-08 12:30:25 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-05-10 17:20:09 +0200 |
commit | 544967faf59b20b6254d713fca94f6e9aa86754c (patch) | |
tree | ed9b37d9a452f1fe761379cc0a165403d4b1f24c /src/gallium/drivers/r300/r300_query.c | |
parent | bfa8a00920dc8ae8f2f6f4389f1dda8c950bff97 (diff) |
gallium/radeon: use gart_page_size instead of hardcoded 4096
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r300/r300_query.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_query.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/r300/r300_query.c b/src/gallium/drivers/r300/r300_query.c index f788f583d65..79e2198d3a7 100644 --- a/src/gallium/drivers/r300/r300_query.c +++ b/src/gallium/drivers/r300/r300_query.c @@ -58,7 +58,9 @@ 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, + q->buf = r300->rws->buffer_create(r300->rws, + r300screen->info.gart_page_size, + r300screen->info.gart_page_size, RADEON_DOMAIN_GTT, 0); if (!q->buf) { FREE(q); |