You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The compiler recently started outputting this incorrect error message:
error: Vulkan 1.2 is required for Raytracing but not permitted to use
note: please specify your target environment via command line option -fspv-target-env=
To my understanding, it's not Vulkan 1.2 that's required but instead Vulkan 1.1 with SPIR-V 1.4.
The text was updated successfully, but these errors were encountered:
I think if you are targeting Vulkan 1.1 and you want to use SPIRV 1.4, you'll need to have VK_KHR_spirv_1_4 extension. Given the complexities of supporting the matrix of target environments and the extensions, the change seems reasonable enough to me (unless there's a strong case for supporting Vulkan 1.1 with VK_KHR_spirv_1_4)
The compiler recently started outputting this incorrect error message:
To my understanding, it's not Vulkan 1.2 that's required but instead Vulkan 1.1 with SPIR-V 1.4.
The text was updated successfully, but these errors were encountered: