From 9640364064be1e1f1db8ba4bed842fffcb1fae57 Mon Sep 17 00:00:00 2001 From: Courtney Goeltzenleuchter Date: Wed, 25 Nov 2015 13:40:37 -0700 Subject: layers: Rename VK_DEBUG_REPORT_EXTENSION enums --- loader/debug_report.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'loader') diff --git a/loader/debug_report.c b/loader/debug_report.c index af0fce1e..8fcdfe57 100644 --- a/loader/debug_report.c +++ b/loader/debug_report.c @@ -40,8 +40,8 @@ typedef void (VKAPI_PTR *PFN_stringCallback)(char *message); static const VkExtensionProperties debug_report_extension_info = { - .extensionName = VK_DEBUG_REPORT_EXTENSION_NAME, - .specVersion = VK_DEBUG_REPORT_EXTENSION_REVISION, + .extensionName = VK_EXT_LUNARG_DEBUG_REPORT_EXTENSION_NAME, + .specVersion = VK_EXT_LUNARG_DEBUG_REPORT_EXTENSION_REVISION, }; void debug_report_add_instance_extensions( @@ -58,7 +58,7 @@ void debug_report_create_instance( ptr_instance->debug_report_enabled = false; for (uint32_t i = 0; i < pCreateInfo->enabledExtensionNameCount; i++) { - if (strcmp(pCreateInfo->ppEnabledExtensionNames[i], VK_DEBUG_REPORT_EXTENSION_NAME) == 0) { + if (strcmp(pCreateInfo->ppEnabledExtensionNames[i], VK_EXT_LUNARG_DEBUG_REPORT_EXTENSION_NAME) == 0) { ptr_instance->debug_report_enabled = true; return; } -- cgit v1.2.3