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

Function DestroyDebugUtilsMessengerEXT

code/02_validation_layers.cpp:32–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30}
31
32void DestroyDebugUtilsMessengerEXT(VkInstance instance, VkDebugUtilsMessengerEXT debugMessenger, const VkAllocationCallbacks* pAllocator) {
33 auto func = (PFN_vkDestroyDebugUtilsMessengerEXT) vkGetInstanceProcAddr(instance, "vkDestroyDebugUtilsMessengerEXT");
34 if (func != nullptr) {
35 func(instance, debugMessenger, pAllocator);
36 }
37}
38
39class HelloTriangleApplication {
40public:

Callers 1

cleanupMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected