The question is quite clear, GLUT provides us functions to create a windowed application. But presently I need to re-design the title bar, and also the border styles. Anyway to remove the borders and title bar? (certainly I’m talking about C++ or Visual C++ ’cause this is an OpenGL related question)
The question is quite clear, GLUT provides us functions to create a windowed application.
Share
You have at least three options:
Modify your GLUT implementation to add this feature. If you’re using FreeGLUT look into the implementation of
fgOpenWindow()infreeglut_window.c.Use a different framework that supports this feature. It looks like SFML should.
Manage the OS interface yourself.