diff options
| author | Jon Ashburn <jon@lunarg.com> | 2015-04-06 10:58:22 -0600 |
|---|---|---|
| committer | Chia-I Wu <olv@lunarg.com> | 2015-04-16 17:48:19 +0800 |
| commit | 18b1ec76dfd3aba5cfc0c9d34af2c142f62ce723 (patch) | |
| tree | 7d0cbee94d6079db53ea403b39b22b6832e5362c /vulkan.py | |
| parent | 4166720ccf420b699f232dd277b9c8620f625e17 (diff) | |
| download | usermoji-18b1ec76dfd3aba5cfc0c9d34af2c142f62ce723.tar.xz | |
loader: refactor layer activation function to handle more general inputs
Renamed structure types as well.
TODO: verify vk-layer-generate.py
v2: fix LoaderEntrypointsSubcommand (olv)
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1024,11 +1024,11 @@ def parse_vk_h(filename): print("core =", str(ext)) print("") - print("typedef struct _VK_LAYER_DISPATCH_TABLE") + print("typedef struct VkLayerDispatchTable_") print("{") for proto in ext.protos: print(" vk%sType %s;" % (proto.name, proto.name)) - print("} VK_LAYER_DISPATCH_TABLE;") + print("} VkLayerDispatchTable;") if __name__ == "__main__": parse_vk_h("include/vulkan.h") |
