We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e27835 commit 9ea856bCopy full SHA for 9ea856b
examples/raytracinggltf/raytracinggltf.cpp
@@ -66,6 +66,9 @@ class VulkanExample : public VulkanRaytracingSample
66
67
// Buffer device address requires the 64-bit integer feature to be enabled
68
enabledFeatures.shaderInt64 = VK_TRUE;
69
+ // Format for the storage image is decided at runtime, so we can't explicilily state it in the shader
70
+ enabledFeatures.shaderStorageImageReadWithoutFormat = VK_TRUE;
71
+ enabledFeatures.shaderStorageImageWriteWithoutFormat = VK_TRUE;
72
73
enabledDeviceExtensions.push_back(VK_KHR_MAINTENANCE3_EXTENSION_NAME);
74
enabledDeviceExtensions.push_back(VK_EXT_DESCRIPTOR_INDEXING_EXTENSION_NAME);
0 commit comments