Georg Lehmann : winevulkan: Fix pointer typedef base types.

Alexandre Julliard julliard at winehq.org
Tue Jul 20 15:11:05 CDT 2021


Module: wine
Branch: master
Commit: c2948c96d63694b1527c94dce7d33e8594b43b29
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=c2948c96d63694b1527c94dce7d33e8594b43b29

Author: Georg Lehmann <dadschoorse at gmail.com>
Date:   Tue Jul 20 15:04:47 2021 +0200

winevulkan: Fix pointer typedef base types.

Signed-off-by: Georg Lehmann <dadschoorse at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/winevulkan/make_vulkan | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dlls/winevulkan/make_vulkan b/dlls/winevulkan/make_vulkan
index e8534cbd5f5..31164406cab 100755
--- a/dlls/winevulkan/make_vulkan
+++ b/dlls/winevulkan/make_vulkan
@@ -3614,6 +3614,9 @@ class VkRegistry(object):
                 _type = None
                 if not t.find("type") is None:
                     _type = t.find("type").text
+                    tail = t.find("type").tail
+                    if tail is not None:
+                        _type += tail.strip()
                 basetype = VkBaseType(name, _type)
                 base_types.append(basetype)
                 type_info["data"] = basetype




More information about the wine-cvs mailing list