commit | 6969851e9b282a032d0b60021a60bd6e50db7591 | [log] [tgz] |
---|---|---|
author | Tony Barbour <tony@LunarG.com> | Thu Jun 18 16:29:32 2015 -0600 |
committer | Tony Barbour <tony@LunarG.com> | Thu Jun 18 16:33:06 2015 -0600 |
tree | 158a556526d566e65869376811a10b55bc7d964d | |
parent | fe1ea0287c1472b3f9bda17e0b2f19dea319562d [diff] [blame] |
Windows: Fix build issues on Windows Generate vulkan.def from header, fix use of alloca
diff --git a/loader/vk-loader-generate.py b/loader/vk-loader-generate.py index f0fcbdb..d1a5082 100755 --- a/loader/vk-loader-generate.py +++ b/loader/vk-loader-generate.py
@@ -353,6 +353,8 @@ for proto in self.protos: if self.exports and proto.name not in self.exports: continue + if proto.name.endswith("WSI"): + continue body.append(" vk" + proto.name) return "\n".join(body)