Allowed device extensions list is missing entry
authorMarcin Kańtoch <marcin.kantoch@amd.com>
Thu, 7 Jun 2018 13:42:25 +0000 (15:42 +0200)
committerAlexander Galazin <Alexander.Galazin@arm.com>
Thu, 21 Jun 2018 18:16:56 +0000 (14:16 -0400)
VK_KHR_create_renderpass2 is missing from the list of allowed
extensions in dEQP-VK.api.info.device.extensions test.
This causes the test to fail if the extension is exposed
in the driver.

Affects:

dEQP-VK.api.info.device.extensions

Components: Vulkan

VK-GL-CTS issue: 1208

Change-Id: I7024db0f775487b5601b5e8c82a807c58d070883
(cherry picked from commit 62deeb1fc1bcda275ff652c6466f9570a2fad75d)

external/vulkancts/modules/vulkan/api/vktApiFeatureInfo.cpp

index 810bec9..3ae4489 100644 (file)
@@ -757,7 +757,8 @@ void checkDeviceExtensions (tcu::ResultCollector& results, const vector<string>&
                "VK_KHR_device_group",
                "VK_KHR_multiview",
                "VK_KHR_maintenance3",
-               "VK_KHR_draw_indirect_count"
+               "VK_KHR_draw_indirect_count",
+               "VK_KHR_create_renderpass2"
        };
 
        checkKhrExtensions(results, extensions, DE_LENGTH_OF_ARRAY(s_allowedDeviceKhrExtensions), s_allowedDeviceKhrExtensions);