mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
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:f4e499ec79("radv: add initial non-conformant radv vulkan driver") Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> (cherry picked from commit030e67fac3)
This commit is contained in:
parent
03df69d6a1
commit
c48dc6ad5f
1 changed files with 1 additions and 1 deletions
|
|
@ -1170,7 +1170,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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue