winevulkan: Put all required functions into function tables.
Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Roderick Colenbrander <thunderbird2k@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
789fc62574
commit
48e4801e02
|
@ -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")
|
||||
|
||||
|
|
Loading…
Reference in New Issue