When you create a window in the slopes using glutCreateWindow, it keeps a top above the window? What if I want to do some OpenGL rendering without the top of the window?
It probably does not matter without a picture:
Basically I want to remove it from the window.
The proper terminology for what you want is "unstressed window" or "borderless window" . Unfortunately, I can not find any glutty calls that allow you to control the window decoration.
The closest I was was was able to find glutFullScreen
, which is often implemented by maximizing the X11 platforms without an undecorated window ... But if you do not maximize it, then to decorate it again.
My findings seem to be confirmed.
Comments
Post a Comment