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

Function DestroyDebugUtilsMessengerEXT

code/28_model_loading.cpp:63–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61}
62
63void DestroyDebugUtilsMessengerEXT(VkInstance instance, VkDebugUtilsMessengerEXT debugMessenger, const VkAllocationCallbacks* pAllocator) {
64 auto func = (PFN_vkDestroyDebugUtilsMessengerEXT) vkGetInstanceProcAddr(instance, "vkDestroyDebugUtilsMessengerEXT");
65 if (func != nullptr) {
66 func(instance, debugMessenger, pAllocator);
67 }
68}
69
70struct QueueFamilyIndices {
71 std::optional<uint32_t> graphicsFamily;

Callers 1

cleanupMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected