Remove window borders

Is there any glx commands to remove a opengl window(not full screen) borders?

Well, when you call XCreateWindow, set the override_redirect of the XSetWindowAttributes structure to true and add the CWOverrideRedirect mask in the valuemask parameter, that should remove the border.

Be warned, you may loose keyboard and mouse input unless you ‘grab’ them.

Dan

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.