set window to borderless
This commit is contained in:
parent
9daa5b5c2c
commit
8f8592e0b5
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue