From: Liam Middlebrook Subject: Re: [PATCH v2 1/4] winevulkan: Add is_alias for VkFunctionPointer. Message-Id: Date: Tue, 22 Sep 2020 13:52:30 -0700 In-Reply-To: <20200922143151.34962-1-dadschoorse@gmail.com> References: <20200922143151.34962-1-dadschoorse@gmail.com> 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 On 9/22/20 7:31 AM, Georg Lehmann wrote: > Signed-off-by: Georg Lehmann > --- > 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): >