MCPcopy Create free account
hub / github.com/Overv/VulkanTutorial / DestroyDebugUtilsMessengerEXT

Function DestroyDebugUtilsMessengerEXT

code/05_window_surface.cpp:34–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34void DestroyDebugUtilsMessengerEXT(VkInstance instance, VkDebugUtilsMessengerEXT debugMessenger, const VkAllocationCallbacks* pAllocator) {
35 auto func = (PFN_vkDestroyDebugUtilsMessengerEXT) vkGetInstanceProcAddr(instance, "vkDestroyDebugUtilsMessengerEXT");
36 if (func != nullptr) {
37 func(instance, debugMessenger, pAllocator);
38 }
39}
40
41struct QueueFamilyIndices {
42 std::optional<uint32_t> graphicsFamily;

Callers 1

cleanupMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected