set window to borderless

This commit is contained in:
Lauchmelder 2021-12-20 23:12:34 +01:00
parent 9daa5b5c2c
commit 8f8592e0b5

View file

@ -23,8 +23,16 @@ void Application::Init(int width, int height, const std::string& title)
if(window == nullptr) if(window == nullptr)
glfwInit(); 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 // 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) if (window == nullptr)
{ {
const char* errorbuf; 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"); throw std::runtime_error("Failed to initialize GLAD");
} }
glViewport(0, 0, width, height); glViewport(0, 0, mode->width, mode->height);
// Register GLFW callbacks // Register GLFW callbacks
glfwSetFramebufferSizeCallback(window, 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 // TODO: Remove, this should probably be done elsewhere
model = VAOFactory::Produce( model = VAOFactory::Produce(