TheAtlasEngine
 
Loading...
Searching...
No Matches
utilities.hpp
1#pragma once
2#include <string>
3#include <vulkan/vulkan_core.h>
4#include <source_location>
5
6namespace atlas::vk {
7
14 void vk_check(
15 const VkResult& p_result,
16 const std::string& p_name,
17 const std::source_location& p_source = std::source_location::current());
18
19};