hi all,
my main.cpp looks like
int main( ){
ofGLWindowSettings settings;
settings.width = PROJECTOR_WIDTH;
settings.height = PROJECTOR_HEIGHT;
settings.setGLVersion(3, 2);
settings.windowMode = OF_FULLSCREEN;
ofCreateWindow(settings);
ofRunApp(new ofApp());
}
like this, the taskbar in xfce and the titlebar of the ofApp window, are still shown.
how can I correct this?
note that I tried OF_GAME_MODE but my app runs extremely slow then. Is that normal?
Gallo
March 13, 2016, 3:58am
#2
hello,
subject discussed here
hello,
i am using oF0.9.2 under Debian Jessie using openbox as the window manager
When i start the app in window mode and switch to fullscreen with f key, everything is ok
But when i start the application in fullscreen mode (set in main.cpp) the app goes in fullscreen but the window border remains. I have to switch back to window mode and then fullscreen again, and then the app is really fullscreen.
any idea ?
and solved here :
https://github.com/openframeworks/openFrameworks/commit/96c71262b2c8cfe3a7b40174e20d5882d10cd79d
Try openFrameworks 0.9.3 or apply the patch above
bbogart
October 11, 2018, 1:50am
#3
Using v0.10.0 this still seems not to work; I get a normal window and not the fullscreen window I expect. I’m using code identical to what is at the top of this post.