Commit 48e4801e authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

winevulkan: Put all required functions into function tables.

parent 789fc625
......@@ -1760,10 +1760,6 @@ class VkGenerator(object):
if not vk_func.is_required():
continue
if not vk_func.needs_dispatch():
LOGGER.debug("skipping {0} in device dispatch table".format(vk_func.name))
continue
f.write(" {{\"{0}\", &{1}{0}}},\n".format(vk_func.name, prefix))
f.write("};\n\n")
......@@ -1772,10 +1768,6 @@ class VkGenerator(object):
if not vk_func.is_required():
continue
if not vk_func.needs_dispatch():
LOGGER.debug("skipping {0} in instance dispatch table".format(vk_func.name))
continue
f.write(" {{\"{0}\", &{1}{0}}},\n".format(vk_func.name, prefix))
f.write("};\n\n")
......
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