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.
This commit is contained in:
Courtney Goeltzenleuchter 2016-01-18 17:42:08 -07:00 committed by Mark Lobodzinski
parent ec1d0b277b
commit 8bbfe41579

View File

@ -208,7 +208,7 @@ typedef struct VkLayerDbgFunctionNode_
VkDebugReportCallbackEXT msgCallback;
PFN_vkDebugReportCallbackEXT pfnMsgCallback;
VkFlags msgFlags;
const void *pUserData;
void *pUserData;
struct VkLayerDbgFunctionNode_ *pNext;
} VkLayerDbgFunctionNode;