Skip to content
Snippets Groups Projects
Commit 727441cc authored by Philip Rebohle's avatar Philip Rebohle Committed by Alexandre Julliard
Browse files

winevulkan: Support struct forward-declarations as base types.


Some types are basically forward-declared structs now, such
as ANativeWindow.

Signed-off-by: default avatarPhilip Rebohle <philip.rebohle@tu-dortmund.de>
Signed-off-by: default avatarLiam Middlebrook <lmiddlebrook@nvidia.com>
Signed-off-by: Alexandre Julliard's avatarAlexandre Julliard <julliard@winehq.org>
parent 4e2ad334
No related branches found
No related tags found
No related merge requests found
......@@ -253,7 +253,10 @@ class VkBaseType(object):
def definition(self):
# Definition is similar for alias or non-alias as type
# is already set to alias.
return "typedef {0} {1};\n".format(self.type, self.name)
if not self.type is None:
return "typedef {0} {1};\n".format(self.type, self.name)
else:
return "struct {0};\n".format(self.name)
def is_alias(self):
return bool(self.alias)
......@@ -2953,7 +2956,9 @@ class VkRegistry(object):
if type_info["category"] == "basetype":
name = t.find("name").text
_type = t.find("type").text
_type = None
if not t.find("type") is None:
_type = t.find("type").text
basetype = VkBaseType(name, _type)
base_types.append(basetype)
type_info["data"] = basetype
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment