mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
anv: Enable VK_KHR_16bit_storage for SSBO and UBO
Enables storageBuffer16BitAccess and uniformAndStorageBuffer16BitAccesss features of VK_KHR_16bit_storage for Gen8+. Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
69be3a82ca
commit
994d210429
2 changed files with 4 additions and 3 deletions
|
|
@ -793,9 +793,10 @@ void anv_GetPhysicalDeviceFeatures2KHR(
|
|||
case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_16BIT_STORAGE_FEATURES_KHR: {
|
||||
VkPhysicalDevice16BitStorageFeaturesKHR *features =
|
||||
(VkPhysicalDevice16BitStorageFeaturesKHR *)ext;
|
||||
ANV_FROM_HANDLE(anv_physical_device, pdevice, physicalDevice);
|
||||
|
||||
features->storageBuffer16BitAccess = false;
|
||||
features->uniformAndStorageBuffer16BitAccess = false;
|
||||
features->storageBuffer16BitAccess = pdevice->info.gen >= 8;
|
||||
features->uniformAndStorageBuffer16BitAccess = pdevice->info.gen >= 8;
|
||||
features->storagePushConstant16 = false;
|
||||
features->storageInputOutput16 = false;
|
||||
break;
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ class Extension:
|
|||
# and dEQP-VK.api.info.device fail due to the duplicated strings.
|
||||
EXTENSIONS = [
|
||||
Extension('VK_ANDROID_native_buffer', 5, 'ANDROID'),
|
||||
Extension('VK_KHR_16bit_storage', 1, False),
|
||||
Extension('VK_KHR_16bit_storage', 1, 'device->info.gen >= 8'),
|
||||
Extension('VK_KHR_bind_memory2', 1, True),
|
||||
Extension('VK_KHR_dedicated_allocation', 1, True),
|
||||
Extension('VK_KHR_descriptor_update_template', 1, True),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue