Hi!
Is there any way I can totally remove/disable the glfw
top title bar section? Not like this post, I want the whole title bar portion is gone thus I can make the window int x_min=0, int y_min = 0, int x_max = 3840, int y_max = 2160
. I am using code:
glfwWindowHint( GLFW_CONTEXT_VERSION_MAJOR, 3 );
glfwWindowHint( GLFW_CONTEXT_VERSION_MINOR, 3 );
glfwWindowHint( GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE ); // To make Apple happy -- should not be needed
glfwWindowHint( GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE );
window = glfwCreateWindow( width, height, window_title, nullptr, nullptr); // NULL = nullptr // this was previous code line
//window = glfwCreateWindow( width, height, window_title, glfwGetPrimaryMonitor(), nullptr); // NULL = nullptr
if( !window )
throw Exception( "Failed to create GLFW window" );
glfwMakeContextCurrent( window );
glfwSwapInterval( 0 ); // No vsync
return window;
}