Commit 8fc72492 authored by Georg Lehmann's avatar Georg Lehmann Committed by Alexandre Julliard

winevulkan: Skip features that are not part of Vulkan.

parent e500ca76
......@@ -3584,6 +3584,8 @@ class VkRegistry(object):
""" Parse the feature section, which describes Core commands and types needed. """
for feature in root.findall("./feature"):
if not api_is_vulkan(feature):
continue
feature_name = feature.attrib["name"]
for require in feature.findall("require"):
LOGGER.info("Including features for {0}".format(require.attrib.get("comment")))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment