From 590b46f12dc59f6563d4eccb55aa61dda6845ecf Mon Sep 17 00:00:00 2001 From: Alexander Galazin Date: Fri, 3 Jul 2020 17:21:26 +0200 Subject: [PATCH] Uncomment gen_framework.py Components: Vulkan VK-GL-CTS issue: 2440 Change-Id: I1bac0a281db39468cb32a8c6d5d4082d17cba088 --- external/vulkancts/scripts/gen_framework.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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 -- 2.7.4