diff options
author | Samuel Pitoiset <[email protected]> | 2020-01-29 10:45:40 +0100 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2020-04-09 14:16:44 -0700 |
commit | 820c636a06d9c5a5a017a1a4525a2121ff7616f3 (patch) | |
tree | 02aed40a326a8b645ced95530aa4c49f22cc3ead /src/amd | |
parent | a0e857c7682e134034a7f416120c4deeed6754d7 (diff) |
radv/llvm: enable 8-bit storage features on GFX6-GFX7
It's now supported and all CTS tests pass.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4339>
(cherry picked from commit 7308f2e9121d90de55da57c9e7ec06ff2b2212bc)
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 25ec15d297e..add2314bdc8 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -1082,10 +1082,9 @@ void radv_GetPhysicalDeviceFeatures2( case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES: { VkPhysicalDevice8BitStorageFeatures *features = (VkPhysicalDevice8BitStorageFeatures *)ext; - bool enabled = pdevice->rad_info.chip_class >= GFX8 && !pdevice->use_aco; - features->storageBuffer8BitAccess = enabled; - features->uniformAndStorageBuffer8BitAccess = enabled; - features->storagePushConstant8 = enabled; + features->storageBuffer8BitAccess = !pdevice->use_aco; + features->uniformAndStorageBuffer8BitAccess = !pdevice->use_aco; + features->storagePushConstant8 = !pdevice->use_aco; break; } case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_FLOAT16_INT8_FEATURES: { @@ -1219,9 +1218,9 @@ void radv_GetPhysicalDeviceFeatures2( (VkPhysicalDeviceVulkan12Features *)ext; features->samplerMirrorClampToEdge = true; features->drawIndirectCount = true; - features->storageBuffer8BitAccess = pdevice->rad_info.chip_class >= GFX8 && !pdevice->use_aco; - features->uniformAndStorageBuffer8BitAccess = pdevice->rad_info.chip_class >= GFX8 && !pdevice->use_aco; - features->storagePushConstant8 = pdevice->rad_info.chip_class >= GFX8 && !pdevice->use_aco; + features->storageBuffer8BitAccess = !pdevice->use_aco; + features->uniformAndStorageBuffer8BitAccess = !pdevice->use_aco; + features->storagePushConstant8 = !pdevice->use_aco; features->shaderBufferInt64Atomics = LLVM_VERSION_MAJOR >= 9; features->shaderSharedInt64Atomics = LLVM_VERSION_MAJOR >= 9; features->shaderFloat16 = pdevice->rad_info.chip_class >= GFX8 && !pdevice->use_aco; |