summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Airlie <[email protected]>2018-10-11 13:44:02 +1000
committerJuan A. Suarez Romero <[email protected]>2018-11-30 10:50:45 +0100
commit90ed59748389c695a08ffeec34777088ee8a24e0 (patch)
tree35e29ca007e8c798dee9e2fce16811facebcbf58 /src
parent555a629b357669b492653dfba6cfd07e2c67cbf0 (diff)
r600: make suballocator 256-bytes align
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=108311 Cc: <[email protected]> (cherry picked from commit 2ddd44d941648d49dc0d917e03a579baec3590d9)
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/r600/r600_query.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_query.c b/src/gallium/drivers/r600/r600_query.c
index ccabab9cdb0..92f243b5c9a 100644
--- a/src/gallium/drivers/r600/r600_query.c
+++ b/src/gallium/drivers/r600/r600_query.c
@@ -1636,7 +1636,7 @@ static void r600_query_hw_get_result_resource(struct r600_common_context *rctx,
}
if (query->buffer.previous) {
- u_suballocator_alloc(rctx->allocator_zeroed_memory, 16, 16,
+ u_suballocator_alloc(rctx->allocator_zeroed_memory, 16, 256,
&tmp_buffer_offset, &tmp_buffer);
if (!tmp_buffer)
return;