From 8f8592e0b52c3557d4df56ea0272c97ed0e43279 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Mon, 20 Dec 2021 23:12:34 +0100 Subject: [PATCH] set window to borderless --- src/Application.cpp | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/src/Application.cpp b/src/Application.cpp index 3d00102..f4c12d8 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -23,8 +23,16 @@ void Application::Init(int width, int height, const std::string& title) if(window == nullptr) glfwInit(); + GLFWmonitor* monitor = glfwGetPrimaryMonitor(); + const GLFWvidmode* mode = glfwGetVideoMode(monitor); + + glfwWindowHint(GLFW_RED_BITS, mode->redBits); + glfwWindowHint(GLFW_GREEN_BITS, mode->greenBits); + glfwWindowHint(GLFW_BLUE_BITS, mode->blueBits); + glfwWindowHint(GLFW_REFRESH_RATE, mode->refreshRate); + // Create GLFW window - window = glfwCreateWindow(width, height, title.c_str(), NULL, NULL); + window = glfwCreateWindow(mode->width, mode->height, title.c_str(), monitor, NULL); if (window == nullptr) { const char* errorbuf; @@ -50,7 +58,7 @@ void Application::Init(int width, int height, const std::string& title) throw std::runtime_error("Failed to initialize GLAD"); } - glViewport(0, 0, width, height); + glViewport(0, 0, mode->width, mode->height); // Register GLFW callbacks glfwSetFramebufferSizeCallback(window, @@ -60,6 +68,17 @@ void Application::Init(int width, int height, const std::string& title) } ); + glfwSetKeyCallback(window, + [](GLFWwindow* window, int key, int scancode, int action, int mods) + { + // Close window when pressing ESC + if (key == GLFW_KEY_ESCAPE && action == GLFW_RELEASE) + { + glfwSetWindowShouldClose(window, true); + } + } + ); + // TODO: Remove, this should probably be done elsewhere model = VAOFactory::Produce(