diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2016-02-11 09:26:16 -0700 |
|---|---|---|
| committer | Tobin Ehlis <tobine@google.com> | 2016-02-12 11:32:22 -0700 |
| commit | cf9784e9137a0f72ca2fbc2b930c9eafe85721eb (patch) | |
| tree | 9bc8d5f0a084291e4a0899e5b6946c61f9fd7f56 /vulkan.py | |
| parent | 648f53b546ed182749b394824b9f95cbde2038f8 (diff) | |
| download | usermoji-cf9784e9137a0f72ca2fbc2b930c9eafe85721eb.tar.xz | |
header: Update 1.0.3 header revision for inclusion of debug report extension
Removed vk_ext_debug_report.h (contents moved into vulkan.h)
Renamed debug report message enums
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -197,7 +197,7 @@ class Extension(object): # VK core API core = Extension( name="VK_CORE", - headers=["vulkan/vulkan.h", "vulkan/vk_ext_debug_report.h"], + headers=["vulkan/vulkan.h"], objects=[ "VkInstance", "VkPhysicalDevice", @@ -1144,7 +1144,7 @@ ext_khr_win32_surface = Extension( ) lunarg_debug_report = Extension( name="VK_EXT_debug_report", - headers=["vulkan/vk_ext_debug_report.h"], + headers=["vulkan/vulkan.h"], objects=[ "VkDebugReportCallbackEXT", ], @@ -1304,7 +1304,7 @@ def parse_vk_h(filename): # make them an extension and print ext = Extension("VK_CORE", - headers=["vulkan/vulkan.h", "vulkan/vk_ext_debug_report.h"], + headers=["vulkan/vulkan.h"], objects=object_lines, protos=protos) print("core =", str(ext)) |
