[PATCH 3/7] winevulkan: Put all required functions into function tables.

Roderick Colenbrander thunderbird2k at gmail.com
Sun Mar 25 14:32:38 CDT 2018


Signed-off-by: Roderick Colenbrander <thunderbird2k at gmail.com>

On Sat, Mar 24, 2018 at 6:28 AM, Józef Kucia <jkucia at codeweavers.com> wrote:
> Signed-off-by: Józef Kucia <jkucia at codeweavers.com>
> ---
>  dlls/winevulkan/make_vulkan | 8 --------
>  1 file changed, 8 deletions(-)
>
> diff --git a/dlls/winevulkan/make_vulkan b/dlls/winevulkan/make_vulkan
> index 14a61b9c3cd9..f214ce1dd296 100755
> --- a/dlls/winevulkan/make_vulkan
> +++ b/dlls/winevulkan/make_vulkan
> @@ -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")
>
> --
> 2.16.1
>
>
>



More information about the wine-devel mailing list