aboutsummaryrefslogtreecommitdiff
path: root/include/vulkan
diff options
context:
space:
mode:
authorCourtney Goeltzenleuchter <courtneygo@google.com>2015-11-30 15:22:41 -0700
committerJon Ashburn <jon@lunarg.com>2015-12-17 11:20:06 -0700
commitcccdce19011d78fcf3898e8f7385b3619f4a8a0a (patch)
tree77eb74c3d4dedded7e26ae376ec39cc4febb5c43 /include/vulkan
parent2dafae41b1f79bfb462eb37c1fdf3479879d9485 (diff)
downloadusermoji-cccdce19011d78fcf3898e8f7385b3619f4a8a0a.tar.xz
debug_report: make destroy have void return value
Diffstat (limited to 'include/vulkan')
-rw-r--r--include/vulkan/vk_lunarg_debug_report.h2
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 936625fe..316476e9 100644
--- a/include/vulkan/vk_lunarg_debug_report.h
+++ b/include/vulkan/vk_lunarg_debug_report.h
@@ -137,7 +137,7 @@ typedef struct VkDebugReportCallbackCreateInfoLUNARG {
// API functions
typedef VkResult (VKAPI_PTR *PFN_vkCreateDebugReportCallbackLUNARG)(VkInstance instance, VkDebugReportCallbackCreateInfoLUNARG *pCreateInfo, const VkAllocationCallbacks *pAllocator, VkDebugReportCallbackLUNARG* pCallback);
-typedef VkResult (VKAPI_PTR *PFN_vkDestroyDebugReportCallbackLUNARG)(VkInstance instance, VkDebugReportCallbackLUNARG callback, const VkAllocationCallbacks *pAllocator);
+typedef void (VKAPI_PTR *PFN_vkDestroyDebugReportCallbackLUNARG)(VkInstance instance, VkDebugReportCallbackLUNARG callback, const VkAllocationCallbacks *pAllocator);
#ifdef VK_PROTOTYPES