diff options
| author | Courtney Goeltzenleuchter <courtneygo@google.com> | 2015-11-25 10:30:56 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-12-15 09:03:33 -0700 |
| commit | 1573582e3bee0ed2c92af3d82a43fb49b1dde1fc (patch) | |
| tree | 4d3c1e26e449ec7fe7961751a89c5c98104b29bc /include/vulkan | |
| parent | 55e3fb0146c3cdeac76ce857abd66b864d648f7d (diff) | |
| download | usermoji-1573582e3bee0ed2c92af3d82a43fb49b1dde1fc.tar.xz | |
layers: Rename DebugReport flags
Conflicts:
layers/mem_tracker.cpp
Conflicts:
layers/draw_state.cpp
Diffstat (limited to 'include/vulkan')
| -rw-r--r-- | include/vulkan/vk_lunarg_debug_report.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/include/vulkan/vk_lunarg_debug_report.h b/include/vulkan/vk_lunarg_debug_report.h index d92a1e1c..dfd27c55 100644 --- a/include/vulkan/vk_lunarg_debug_report.h +++ b/include/vulkan/vk_lunarg_debug_report.h @@ -89,14 +89,15 @@ VK_DEFINE_NON_DISPATCHABLE_HANDLE(VkDbgMsgCallback) // ------------------------------------------------------------------------------------------------ // Enumerations -typedef enum VkDbgReportFlags_ +typedef enum VkDebugReportFlagsLUNARG_ { - VK_DBG_REPORT_INFO_BIT = 0x0001, - VK_DBG_REPORT_WARN_BIT = 0x0002, - VK_DBG_REPORT_PERF_WARN_BIT = 0x0004, - VK_DBG_REPORT_ERROR_BIT = 0x0008, - VK_DBG_REPORT_DEBUG_BIT = 0x0010, -} VkDbgReportFlags; + VK_DEBUG_REPORT_INFO_BIT = 0x0001, + VK_DEBUG_REPORT_WARN_BIT = 0x0002, + VK_DEBUG_REPORT_PERF_WARN_BIT = 0x0004, + VK_DEBUG_REPORT_ERROR_BIT = 0x0008, + VK_DEBUG_REPORT_DEBUG_BIT = 0x0010, +} VkDebugReportFlagBitsLUNARG; +typedef VkFlags VkDebugReportFlagsLUNARG; // Debug Report ERROR codes typedef enum _DEBUG_REPORT_ERROR |
