diff options
| author | ArielG-NV <159081215+ArielG-NV@users.noreply.github.com> | 2024-04-28 22:34:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-28 22:34:02 -0400 |
| commit | 30b82abc37fd512efb12632da21bed3654d594a8 (patch) | |
| tree | 0570ea0c14e5ca693c8e923a61793f64ce642f33 /tools/gfx/vulkan/vk-api.h | |
| parent | 2b87c00c671b156b8e5926f8967003bf12c65aa7 (diff) | |
Add variable pointers to render-test-vk and a related failing test-case (#4041)
* add variable pointers to render-test-vk and failing (but ignored with workarounds) test-case
Diffstat (limited to 'tools/gfx/vulkan/vk-api.h')
| -rw-r--r-- | tools/gfx/vulkan/vk-api.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/gfx/vulkan/vk-api.h b/tools/gfx/vulkan/vk-api.h index cceac20e1..04d9d066f 100644 --- a/tools/gfx/vulkan/vk-api.h +++ b/tools/gfx/vulkan/vk-api.h @@ -283,6 +283,10 @@ struct VulkanExtendedFeatureProperties VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_RAY_TRACING_INVOCATION_REORDER_FEATURES_NV }; + VkPhysicalDeviceVariablePointerFeaturesKHR variablePointersFeatures = { + VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VARIABLE_POINTER_FEATURES_KHR + }; + // Clock features VkPhysicalDeviceShaderClockFeaturesKHR clockFeatures = { VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SHADER_CLOCK_FEATURES_KHR |
