Hi, I’m new to GLFW having used mainly just GLUT in the past.
Is there a way with GLFW to create a window that doesn’t have the title bar and borders?
Thanks.
Call
glfwWindowHint(GLFW_DECORATED, GLFW_FALSE);
before creating the window.
If you want to create a full-screen window (which never has decorations), specify a monitor when calling glfwCreateWindow
.