mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 13:10:10 +01:00
pvr: Fix VK_EXT_texel_buffer_alignment
In the commit that enabled the extension, I forgot to add the required
properties, which made some tests to fail.
Fixes: 649ebbb0fb ("pvr: Implement VK_EXT_texel_buffer_alignment")
Signed-off-by: Vlad Schiller <vlad-radu.schiller@imgtec.com>
Reviewed-by: Frank Binns <frank.binns@imgtec.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26002>
This commit is contained in:
parent
abfd208cb0
commit
1dd1c9d610
1 changed files with 6 additions and 0 deletions
|
|
@ -591,6 +591,12 @@ static bool pvr_physical_device_get_properties(
|
|||
|
||||
/* Vulkan 1.2 / VK_KHR_timeline_semaphore */
|
||||
.maxTimelineSemaphoreValueDifference = UINT64_MAX,
|
||||
|
||||
/* Vulkan 1.3 / VK_EXT_texel_buffer_alignment */
|
||||
.storageTexelBufferOffsetAlignmentBytes = 16,
|
||||
.storageTexelBufferOffsetSingleTexelAlignment = true,
|
||||
.uniformTexelBufferOffsetAlignmentBytes = 16,
|
||||
.uniformTexelBufferOffsetSingleTexelAlignment = false,
|
||||
};
|
||||
|
||||
snprintf(properties->deviceName,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue