diff --git a/src/main.cpp b/src/main.cpp index b38dcc4..229cb58 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -9,15 +9,11 @@ std::int32_t main(std::int32_t argc, gsl::zstring* argv) { const veng::GlfwInitialization _glfw; veng::Window window("Vulkan Engine", {800, 600}); - //window.TryMoveToMonitor(0); + window.TryMoveToMonitor(0); - //veng::Graphics graphics(&window); - - glfwMakeContextCurrent(window.GetHandle()); - //glClearColor(0.4f, 0.3f, 0.4f, 0.0f); + veng::Graphics graphics(&window); while (!window.ShouldClose()) { - //glClear(GL_COLOR_BUFFER_BIT); glfwSwapBuffers(window.GetHandle()); glfwPollEvents(); }