aboutsummaryrefslogtreecommitdiff
path: root/layers
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtneygo@google.com>2016-01-18 17:42:08 -0700
committerMark Lobodzinski <mark@lunarg.com>2016-01-19 13:30:45 -0700
commita5a167a32441683837d21a2dd506946fca6301c3 (patch)
tree2dc52a37c9114dfeec722f6b01ce9d6d7840809f /layers
parenteafb6206f2b5f0c2a66cb8ea285c17e40c1894ed (diff)
downloadusermoji-a5a167a32441683837d21a2dd506946fca6301c3.tar.xz
debug_report: MR141, Change pUserData to match type used elsewhere
Other uses of pUserData in Vulkan do not have a const qualifier, remove it for this pUserData.
Diffstat (limited to 'layers')
-rw-r--r--layers/vk_layer_logging.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/layers/vk_layer_logging.h b/layers/vk_layer_logging.h
index b1f3ac42..06a27a3b 100644
--- a/layers/vk_layer_logging.h
+++ b/layers/vk_layer_logging.h
@@ -307,7 +307,7 @@ static inline VKAPI_ATTR VkBool32 VKAPI_CALL log_callback(
int32_t msgCode,
const char* pLayerPrefix,
const char* pMsg,
- const void* pUserData)
+ void* pUserData)
{
char msg_flags[30];
@@ -328,7 +328,7 @@ static inline VKAPI_ATTR VkBool32 VKAPI_CALL win32_debug_output_msg(
int32_t msgCode,
const char* pLayerPrefix,
const char* pMsg,
- const void* pUserData)
+ void* pUserData)
{
#ifdef WIN32
char msg_flags[30];