[PATCH v2 1/4] winevulkan: Add is_alias for VkFunctionPointer.

Liam Middlebrook lmiddlebrook at nvidia.com
Tue Sep 22 15:52:30 CDT 2020


I think it would be nice to check if there is an 'alias' attribute when 
parsing funcpointers, and store that alias. But, since there aren't any 
funcpointers which have this attribute set right now, I'm fine with 
deferring that handling until the need arises.

Signed-off-by: Liam Middlebrook <lmiddlebrook at nvidia.com>

On 9/22/20 7:31 AM, Georg Lehmann wrote:
> Signed-off-by: Georg Lehmann <dadschoorse at gmail.com>
> ---
>   dlls/winevulkan/make_vulkan | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/dlls/winevulkan/make_vulkan b/dlls/winevulkan/make_vulkan
> index 5261c35360..1b39cbb831 100755
> --- a/dlls/winevulkan/make_vulkan
> +++ b/dlls/winevulkan/make_vulkan
> @@ -865,6 +865,8 @@ class VkFunctionPointer(object):
>           text += ");\n"
>           return text
>   
> +    def is_alias(self):
> +        return False
>   
>   class VkHandle(object):
>       def __init__(self, name, _type, parent, alias=None):
> 



More information about the wine-devel mailing list