Fix check in testMandatoryExtensions
authorPiotr Byszewski <piotr.byszewski@mobica.com>
Mon, 28 Oct 2019 15:09:36 +0000 (16:09 +0100)
committerPiotr Byszewski <piotr.byszewski@mobica.com>
Mon, 28 Oct 2019 15:09:36 +0000 (16:09 +0100)
Affects:
dEQP-VK.api.info.android.mandatory_extensions

Change-Id: Iec3b405cb168daa7dd7fc2183963778ef7d6eb0b
Components: Vulkan

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

index 2b68640..d9df06f 100644 (file)
@@ -3615,7 +3615,7 @@ tcu::TestStatus testMandatoryExtensions (Context& context)
 
                for (const auto ext : mandatoryExtensions)
                {
-                       if (!context.isDeviceFunctionalitySupported(ext))
+                       if (!context.isInstanceFunctionalitySupported(ext))
                                results.fail(ext + " is not supported");
                }
        }