Commit e500ca76 authored by Georg Lehmann's avatar Georg Lehmann Committed by Alexandre Julliard

winevulkan: Only parse extensions for Vulkan.

242 adds VulkanSC only extensions
parent 53c7ccec
......@@ -3490,8 +3490,9 @@ class VkRegistry(object):
if cmd_name in self.funcs:
self.funcs[cmd_name].extensions.add(ext_name)
# Some extensions are not ready or have numbers reserved as a place holder.
if ext.attrib["supported"] == "disabled":
# Some extensions are not ready or have numbers reserved as a place holder
# or are only supported for VulkanSC.
if not "vulkan" in ext.attrib["supported"].split(","):
LOGGER.debug("Skipping disabled extension: {0}".format(ext_name))
skipped_exts.append(ext_name)
return
......
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