diff options
| author | Courtney Goeltzenleuchter <courtneygo@google.com> | 2015-11-30 11:52:06 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-12-15 09:17:29 -0700 |
| commit | 04ae89b52db50c754273a052d9171b6d6b43c72f (patch) | |
| tree | 790193fb63455b4394a2d4a7f2df96cfecfe0a0e /include/vulkan | |
| parent | 8f7032cfde9684d7db4f2ec92fa90feed476fcd4 (diff) | |
| download | usermoji-04ae89b52db50c754273a052d9171b6d6b43c72f.tar.xz | |
debug_report: Make pUserData always a const
This prevents compiler warnings.
Diffstat (limited to 'include/vulkan')
| -rw-r--r-- | include/vulkan/vk_lunarg_debug_report.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vulkan/vk_lunarg_debug_report.h b/include/vulkan/vk_lunarg_debug_report.h index 50ee9ea8..7dce07e9 100644 --- a/include/vulkan/vk_lunarg_debug_report.h +++ b/include/vulkan/vk_lunarg_debug_report.h @@ -122,7 +122,7 @@ typedef VkBool32 (*PFN_vkDbgMsgCallback)( int32_t msgCode, const char* pLayerPrefix, const char* pMsg, - void* pUserData); + const void* pUserData); // ------------------------------------------------------------------------------------------------ // API functions |
