Typo fix for ycbcr sampler conversion extension name
authorPeter Gal <pgal.u-szeged@partner.samsung.com>
Tue, 3 Oct 2017 09:10:37 +0000 (11:10 +0200)
committerPeter Gal <pgal.u-szeged@partner.samsung.com>
Tue, 3 Oct 2017 09:11:57 +0000 (11:11 +0200)
Components: Vulkan

Change-Id: I201b0470fb1eb5fb113eb76fb1803e6f2ec7fbc7

external/vulkancts/modules/vulkan/ycbcr/vktYCbCrUtil.cpp

index 3123fbb..b63cccc 100644 (file)
@@ -189,7 +189,7 @@ void checkImageSupport (Context& context, VkFormat format, VkImageCreateFlags cr
        const VkPhysicalDeviceSamplerYcbcrConversionFeatures*           features        = findStructure<VkPhysicalDeviceSamplerYcbcrConversionFeatures>(context.getDeviceFeatures2().pNext);
        vector<string>                                                                                          reqExts;
 
-       if (!isCoreDeviceExtension(context.getUsedApiVersion(), "VK_KHR_sampler_ycbcr_conversio"))
+       if (!isCoreDeviceExtension(context.getUsedApiVersion(), "VK_KHR_sampler_ycbcr_conversion"))
                reqExts.push_back("VK_KHR_sampler_ycbcr_conversion");
 
        if (disjoint)