Implemented image view system for.. viewing images
This commit is contained in:
15
src/debug/vulkandebuglibs.h
Normal file
15
src/debug/vulkandebuglibs.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
#include <vector>
|
||||
#include <vulkan/vulkan_core.h>
|
||||
|
||||
namespace Debug {
|
||||
class vulkandebuglibs {
|
||||
|
||||
public:
|
||||
void vulkanDebugSetup(VkInstanceCreateInfo& createInfo, VkInstance& instance);
|
||||
bool checkValidationLayerSupport();
|
||||
void checkUnavailableValidationLayers();
|
||||
void setupDebugMessenger(VkInstance& vulkanInstance);
|
||||
void DestroyDebugUtilsMessengerEXT(VkInstance instance, const VkAllocationCallbacks* pAllocator);
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user