vulkan-project/vk_convert.hpp
2022-10-07 23:30:44 +02:00

10 lines
219 B
C++

#include <vulkan/vulkan_core.h>
#include <string>
VkBool32 bool2VkBool(const bool& b);
bool vkBool2Bool(const VkBool32& b);
VkBool32 string2VkBool(const std::string& s);
std::string vkBool2String(const VkBool32& b);