From: Alexander Galazin Date: Fri, 3 Jul 2020 15:21:26 +0000 (+0200) Subject: Uncomment gen_framework.py X-Git-Tag: upstream/1.3.5~1319 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=590b46f12dc59f6563d4eccb55aa61dda6845ecf;p=platform%2Fupstream%2FVK-GL-CTS.git Uncomment gen_framework.py Components: Vulkan VK-GL-CTS issue: 2440 Change-Id: I1bac0a281db39468cb32a8c6d5d4082d17cba088 --- diff --git a/external/vulkancts/scripts/gen_framework.py b/external/vulkancts/scripts/gen_framework.py index ece55fe..dfda6e9 100644 --- a/external/vulkancts/scripts/gen_framework.py +++ b/external/vulkancts/scripts/gen_framework.py @@ -2203,7 +2203,7 @@ if __name__ == "__main__": platformFuncs = [Function.TYPE_PLATFORM] instanceFuncs = [Function.TYPE_INSTANCE] deviceFuncs = [Function.TYPE_DEVICE] - ''' + dfd = generateDeviceFeaturesDefs(src) writeDeviceFeatures (api, dfd, os.path.join(VULKAN_DIR, "vkDeviceFeatures.inl")) writeDeviceFeaturesDefaultDeviceDefs (dfd, os.path.join(VULKAN_DIR, "vkDeviceFeaturesForDefaultDeviceDefs.inl")) @@ -2246,11 +2246,10 @@ if __name__ == "__main__": writeSupportedExtenions (api, os.path.join(VULKAN_DIR, "vkSupportedExtensions.inl")) writeCoreFunctionalities (api, os.path.join(VULKAN_DIR, "vkCoreFunctionalities.inl")) writeExtensionFunctions (api, os.path.join(VULKAN_DIR, "vkExtensionFunctions.inl")) - ''' + writeDeviceFeatures2 (api, os.path.join(VULKAN_DIR, "vkDeviceFeatures2.inl")) - ''' + writeMandatoryFeatures ( os.path.join(VULKAN_DIR, "vkMandatoryFeatures.inl")) writeExtensionList ( os.path.join(VULKAN_DIR, "vkInstanceExtensions.inl"), 'INSTANCE') writeExtensionList ( os.path.join(VULKAN_DIR, "vkDeviceExtensions.inl"), 'DEVICE') - writeDriverIds ( os.path.join(VULKAN_DIR, "vkKnownDriverIds.inl")) - ''' \ No newline at end of file + writeDriverIds ( os.path.join(VULKAN_DIR, "vkKnownDriverIds.inl")) \ No newline at end of file