Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fullscreen with opengl

I need my window to be set to fullscreen (fs). No border, no interaction with anything behind this window, no start bar,etc. Just the program i'll be working in.

I'm guessing that the cursor not going outside of the window is not part of this, but i'll work on that later.

I've seen and tried the NeHe tutorial, but since it was wrote almost 10 years ago, i was wondering if a "less-line" way of putting a program fs exist.

like image 758
CedL Avatar asked Nov 28 '25 06:11

CedL


1 Answers

"less-line" way of putting a program fs exist.

Use glut or SDL and initialize them in fullscreen mode. Can't get less lines than that.

Otherwise read this.

like image 199
SigTerm Avatar answered Nov 30 '25 21:11

SigTerm