From: Piotr Byszewski Date: Mon, 28 Oct 2019 15:09:36 +0000 (+0100) Subject: Fix check in testMandatoryExtensions X-Git-Tag: upstream/1.3.5~1624^2~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cbb2c3e192fe6074d7e4926cf33352c7b48266e3;p=platform%2Fupstream%2FVK-GL-CTS.git Fix check in testMandatoryExtensions Affects: dEQP-VK.api.info.android.mandatory_extensions Change-Id: Iec3b405cb168daa7dd7fc2183963778ef7d6eb0b Components: Vulkan --- diff --git a/external/vulkancts/modules/vulkan/api/vktApiFeatureInfo.cpp b/external/vulkancts/modules/vulkan/api/vktApiFeatureInfo.cpp index 2b68640..d9df06f 100644 --- a/external/vulkancts/modules/vulkan/api/vktApiFeatureInfo.cpp +++ b/external/vulkancts/modules/vulkan/api/vktApiFeatureInfo.cpp @@ -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"); } }