diff options
author | Samuel Pitoiset <[email protected]> | 2019-10-09 10:37:04 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2019-10-09 11:22:58 +0000 |
commit | 030e67fac31fe6e89b87fdace49cf6757f5c0b77 (patch) | |
tree | 8e5e645219659863f20a673f52ba0e7f36aeaf4b /src | |
parent | 1b21b97511340d2daa111430acb846a4ce4b7522 (diff) |
radv: bump minTexelBufferOffsetAlignment to 4
The spec has probably been misinterpreted during RADV bringup.
This fixes GPU hangs with dEQP-VK.binding_model.*offset_nonzero*.
Fixes: f4e499ec791 ("radv: add initial non-conformant radv vulkan driver")
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index efd3eb39417..1973079b45d 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -1169,7 +1169,7 @@ void radv_GetPhysicalDeviceProperties( .viewportBoundsRange = { INT16_MIN, INT16_MAX }, .viewportSubPixelBits = 8, .minMemoryMapAlignment = 4096, /* A page */ - .minTexelBufferOffsetAlignment = 1, + .minTexelBufferOffsetAlignment = 4, .minUniformBufferOffsetAlignment = 4, .minStorageBufferOffsetAlignment = 4, .minTexelOffset = -32, |