diff options
| author | Courtney Goeltzenleuchter <courtneygo@google.com> | 2015-11-25 13:40:37 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-12-15 09:08:28 -0700 |
| commit | 9640364064be1e1f1db8ba4bed842fffcb1fae57 (patch) | |
| tree | c8aa0f8584cdfefad0a169b1c8e35895c96578ef /loader | |
| parent | 66d7b56760657f9d57f5ec3675847a4cd2c81d38 (diff) | |
| download | usermoji-9640364064be1e1f1db8ba4bed842fffcb1fae57.tar.xz | |
layers: Rename VK_DEBUG_REPORT_EXTENSION enums
Diffstat (limited to 'loader')
| -rw-r--r-- | loader/debug_report.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |
