diff options
| author | Courtney Goeltzenleuchter <courtneygo@google.com> | 2015-11-30 15:28:25 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-12-17 11:20:06 -0700 |
| commit | fd150e9eb3ba16a0df0f817cc00087827e49efd7 (patch) | |
| tree | fec4d8adb1c192d0c249988eb44a1561486015b4 /vulkan.py | |
| parent | c0e34c259c07ab819529c7b1ca712127dd633949 (diff) | |
| download | usermoji-fd150e9eb3ba16a0df0f817cc00087827e49efd7.tar.xz | |
debug_report: Add DebugReportMessage function
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1134,6 +1134,16 @@ lunarg_debug_report = Extension( [Param("VkInstance", "instance"), Param("VkDebugReportCallbackLUNARG", "callback"), Param("const VkAllocationCallbacks*", "pAllocator")]), + + Proto("void", "DebugReportMessageLUNARG", + [Param("VkInstance", "instance"), + Param("VkDebugReportFlagsLUNARG", "flags"), + Param("VkDebugReportObjectTypeLUNARG", "objType"), + Param("uint64_t", "object"), + Param("size_t", "location"), + Param("int32_t", "msgCode"), + Param("const char *", "pLayerPrefix"), + Param("const char *", "pMsg")]), ], ) lunarg_debug_marker = Extension( |
