From d3aa7d233596c7d4dae649df90e1176ed6be2c68 Mon Sep 17 00:00:00 2001 From: tim Date: Tue, 28 Mar 2017 22:42:54 +0100 Subject: starting deploy system --- menuApp/src/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'menuApp/src/main.cpp') diff --git a/menuApp/src/main.cpp b/menuApp/src/main.cpp index dfd29a5..e0837f0 100644 --- a/menuApp/src/main.cpp +++ b/menuApp/src/main.cpp @@ -4,8 +4,11 @@ //======================================================================== int main( ){ +#ifdef FULLSCREEN + ofSetupOpenGL(1080*FACTOR, 1920*FACTOR,OF_FULLSCREEN); +#else ofSetupOpenGL(1080*FACTOR, 1920*FACTOR,OF_WINDOW); // <-------- setup the GL context - +#endif // this kicks off the running of my app // can be OF_WINDOW or OF_FULLSCREEN // pass in width and height too: -- cgit v1.2.3