mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-28 10:50:39 +02:00
panvk: Require 16B alignment for UBOs
This is required by MALI_UNIFORM_BUFFER. Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15398>
This commit is contained in:
parent
a54f5e8e00
commit
6214cce382
1 changed files with 1 additions and 1 deletions
|
|
@ -791,7 +791,7 @@ panvk_GetPhysicalDeviceProperties2(VkPhysicalDevice physicalDevice,
|
|||
.viewportSubPixelBits = 8,
|
||||
.minMemoryMapAlignment = 4096, /* A page */
|
||||
.minTexelBufferOffsetAlignment = 64,
|
||||
.minUniformBufferOffsetAlignment = 4,
|
||||
.minUniformBufferOffsetAlignment = 16,
|
||||
.minStorageBufferOffsetAlignment = 4,
|
||||
.minTexelOffset = -32,
|
||||
.maxTexelOffset = 31,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue