From: Jean-Philippe Bruyère Date: Thu, 13 Aug 2020 10:46:57 +0000 (+0200) Subject: remove old VK_EXT_debug_report function pointers X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=87e1a713755fd58e2bb2e47af9568583ed99d8dd;p=jp%2Fvkhelpers.git remove old VK_EXT_debug_report function pointers --- diff --git a/src/vkh_device.h b/src/vkh_device.h index fd11dbd..2bdc656 100644 --- a/src/vkh_device.h +++ b/src/vkh_device.h @@ -29,16 +29,12 @@ extern "C" { #include "vkh.h" #include "vk_mem_alloc.h" -PFN_vkCreateDebugReportCallbackEXT CreateDebugReportCallback; -PFN_vkDestroyDebugReportCallbackEXT DestroyDebugReportCallback; -PFN_vkDebugReportMessageEXT dbgBreakCallback; - typedef struct _vkh_device_t{ - VkDevice dev; - VkPhysicalDeviceMemoryProperties phyMemProps; - VkPhysicalDevice phy; - VmaAllocator allocator; - VkInstance instance; + VkDevice dev; + VkPhysicalDeviceMemoryProperties phyMemProps; + VkPhysicalDevice phy; + VmaAllocator allocator; + VkInstance instance; }vkh_device_t; #ifdef __cplusplus