diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2018-04-01 10:38:15 -0600 |
|---|---|---|
| committer | Mark Lobodzinski <mark@lunarg.com> | 2018-04-02 14:18:39 -0600 |
| commit | 651b7cd0e960ce11ae403c81f370205e84548682 (patch) | |
| tree | 550f12dd34ee14d80bf3c6c00aa15b8cc0c0ebf1 /layers/unique_objects.cpp | |
| parent | 15c1d014cad11a0099be582ea81ec79a3179b860 (diff) | |
| download | usermoji-651b7cd0e960ce11ae403c81f370205e84548682.tar.xz | |
layers: Remove layer prefix from log_msg calls
Change-Id: Iea43bd2f8f2c92d99b5fdf40abe94149a6fb860c
Diffstat (limited to 'layers/unique_objects.cpp')
| -rw-r--r-- | layers/unique_objects.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layers/unique_objects.cpp b/layers/unique_objects.cpp index d132393d..51bf57ce 100644 --- a/layers/unique_objects.cpp +++ b/layers/unique_objects.cpp @@ -72,7 +72,7 @@ static void InstanceExtensionWhitelist(const VkInstanceCreateInfo *pCreateInfo, // Check for recognized instance extensions if (!white_list(pCreateInfo->ppEnabledExtensionNames[i], kInstanceExtensionNames)) { log_msg(instance_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, 0, - VALIDATION_ERROR_UNDEFINED, "UniqueObjects", + VALIDATION_ERROR_UNDEFINED, "Instance Extension %s is not supported by this layer. Using this extension may adversely affect validation " "results and/or produce undefined behavior.", pCreateInfo->ppEnabledExtensionNames[i]); @@ -88,7 +88,7 @@ static void DeviceExtensionWhitelist(const VkDeviceCreateInfo *pCreateInfo, VkDe // Check for recognized device extensions if (!white_list(pCreateInfo->ppEnabledExtensionNames[i], kDeviceExtensionNames)) { log_msg(device_data->report_data, VK_DEBUG_REPORT_ERROR_BIT_EXT, VK_DEBUG_REPORT_OBJECT_TYPE_UNKNOWN_EXT, 0, - VALIDATION_ERROR_UNDEFINED, "UniqueObjects", + VALIDATION_ERROR_UNDEFINED, "Device Extension %s is not supported by this layer. Using this extension may adversely affect validation " "results and/or produce undefined behavior.", pCreateInfo->ppEnabledExtensionNames[i]); |
