diff options
author | Dave Airlie <[email protected]> | 2018-10-11 13:44:02 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2018-11-29 09:09:02 +1000 |
commit | 2ddd44d941648d49dc0d917e03a579baec3590d9 (patch) | |
tree | de2f5077fea4eb62fbcf0f3b81a17794e6cbb893 /src/gallium/drivers/r600/r600_query.c | |
parent | f11780779ff8b9449e9fcb55a672f12ef81d7a1a (diff) |
r600: make suballocator 256-bytes align
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=108311
Cc: <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_query.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_query.c | 2 |
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; |