diff options
author | Dave Airlie <[email protected]> | 2017-08-24 02:47:14 +0100 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-08-25 00:52:36 +0100 |
commit | 19f6906c1e498499035e98929657e2faebe6c993 (patch) | |
tree | 772c95f42dc72b07db0151fe7ef7970f52d2230c /src/amd | |
parent | 12fd0f8dc1fede75142f7eb369ca5c98bd41eb74 (diff) |
radv/gfx9: gfx9 has buffer sizing rules like pre-VI.
This fixes:
dEQP-VK.robustness.buffer_access.* on GFX9.
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Cc: "17.2" <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/vulkan/radv_image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c index 684e804cc99..e915d675fdf 100644 --- a/src/amd/vulkan/radv_image.c +++ b/src/amd/vulkan/radv_image.c @@ -185,7 +185,7 @@ radv_make_buffer_descriptor(struct radv_device *device, state[1] = S_008F04_BASE_ADDRESS_HI(va >> 32) | S_008F04_STRIDE(stride); - if (device->physical_device->rad_info.chip_class < VI && stride) { + if (device->physical_device->rad_info.chip_class != VI && stride) { range /= stride; } |