Set depthBounds feature properly so it can be checked for support

This commit is contained in:
baldurk
2020-10-19 17:44:11 +01:00
parent c56e1f0ae4
commit fc976d2d39
+2 -2
View File
@@ -33,6 +33,8 @@ RD_TEST(VK_Extended_Dynamic_State, VulkanGraphicsTest)
{
devExts.push_back(VK_EXT_EXTENDED_DYNAMIC_STATE_EXTENSION_NAME);
features.depthBounds = VK_TRUE;
VulkanGraphicsTest::Prepare(argc, argv);
if(!Avail.empty())
@@ -47,8 +49,6 @@ RD_TEST(VK_Extended_Dynamic_State, VulkanGraphicsTest)
if(!extFeatures.extendedDynamicState)
Avail = "feature 'extendedDynamicState' not available";
features.depthBounds = VK_TRUE;
devInfoNext = &extFeatures;
}