aboutsummaryrefslogtreecommitdiff
path: root/loader/debug_report.c
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtneygo@google.com>2015-11-25 10:30:56 -0700
committerJon Ashburn <jon@lunarg.com>2015-12-15 09:03:33 -0700
commit1573582e3bee0ed2c92af3d82a43fb49b1dde1fc (patch)
tree4d3c1e26e449ec7fe7961751a89c5c98104b29bc /loader/debug_report.c
parent55e3fb0146c3cdeac76ce857abd66b864d648f7d (diff)
downloadusermoji-1573582e3bee0ed2c92af3d82a43fb49b1dde1fc.tar.xz
layers: Rename DebugReport flags
Conflicts: layers/mem_tracker.cpp Conflicts: layers/draw_state.cpp
Diffstat (limited to 'loader/debug_report.c')
-rw-r--r--loader/debug_report.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/loader/debug_report.c b/loader/debug_report.c
index 98fd3b46..5d3a376d 100644
--- a/loader/debug_report.c
+++ b/loader/debug_report.c
@@ -225,26 +225,26 @@ static void print_msg_flags(VkFlags msgFlags, char *msg_flags)
bool separator = false;
msg_flags[0] = 0;
- if (msgFlags & VK_DBG_REPORT_DEBUG_BIT) {
+ if (msgFlags & VK_DEBUG_REPORT_DEBUG_BIT) {
strcat(msg_flags, "DEBUG");
separator = true;
}
- if (msgFlags & VK_DBG_REPORT_INFO_BIT) {
+ if (msgFlags & VK_DEBUG_REPORT_INFO_BIT) {
if (separator) strcat(msg_flags, ",");
strcat(msg_flags, "INFO");
separator = true;
}
- if (msgFlags & VK_DBG_REPORT_WARN_BIT) {
+ if (msgFlags & VK_DEBUG_REPORT_WARN_BIT) {
if (separator) strcat(msg_flags, ",");
strcat(msg_flags, "WARN");
separator = true;
}
- if (msgFlags & VK_DBG_REPORT_PERF_WARN_BIT) {
+ if (msgFlags & VK_DEBUG_REPORT_PERF_WARN_BIT) {
if (separator) strcat(msg_flags, ",");
strcat(msg_flags, "PERF");
separator = true;
}
- if (msgFlags & VK_DBG_REPORT_ERROR_BIT) {
+ if (msgFlags & VK_DEBUG_REPORT_ERROR_BIT) {
if (separator) strcat(msg_flags, ",");
strcat(msg_flags, "ERROR");
}