#define GLFW_INCLUDE_VULKAN #include #include #include #include const int WIDTH = 800; const int HEIGHT = 600; template class VDeleter { public: VDeleter() : VDeleter([](T, VkAllocationCallbacks*) {}) {} VDeleter(std::function deletef) { this->deleter = [=](T obj) { deletef(obj, nullptr); }; } VDeleter(const VDeleter& instance, std::function deletef) { this->deleter = [&instance, deletef](T obj) { deletef(instance, obj, nullptr); }; } VDeleter(const VDeleter& device, std::function deletef) { this->deleter = [&device, deletef](T obj) { deletef(device, obj, nullptr); }; } ~VDeleter() { cleanup(); } const T* operator &() const { return &object; } T* replace() { cleanup(); return &object; } operator T() const { return object; } void operator=(T rhs) { if (rhs != object) { cleanup(); object = rhs; } } template bool operator==(V rhs) { return object == T(rhs); } private: T object{VK_NULL_HANDLE}; std::function deleter; void cleanup() { if (object != VK_NULL_HANDLE) { deleter(object); } object = VK_NULL_HANDLE; } }; class HelloTriangleApplication { public: void run() { initWindow(); initVulkan(); mainLoop(); } private: GLFWwindow* window; void initWindow() { glfwInit(); glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API); glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE); window = glfwCreateWindow(WIDTH, HEIGHT, "Vulkan", nullptr, nullptr); } void initVulkan() { } void mainLoop() { while (!glfwWindowShouldClose(window)) { glfwPollEvents(); } } }; int main() { HelloTriangleApplication app; try { app.run(); } catch (const std::runtime_error& e) { std::cerr << e.what() << std::endl; return EXIT_FAILURE; } return EXIT_SUCCESS; }