diff options
Diffstat (limited to 'liveengine/src/main.cpp')
| -rwxr-xr-x[-rw-r--r--] | liveengine/src/main.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/liveengine/src/main.cpp b/liveengine/src/main.cpp index 41470a2..28ab04b 100644..100755 --- a/liveengine/src/main.cpp +++ b/liveengine/src/main.cpp @@ -1,17 +1,20 @@ #include "ofMain.h" #include "testApp.h" +#include "ofxFensterManager.h" #include "ofAppGlutWindow.h" //======================================================================== int main( ){ ofAppGlutWindow window; - ofSetupOpenGL(&window, 1024,768, OF_WINDOW); // <-------- setup the GL context + ofSetupOpenGL(ofxFensterManager::get(),1024,768, OF_WINDOW); + //ofSetupOpenGL(&window, 1024,768, OF_WINDOW); // <-------- setup the GL context //ofSetupOpenGL(&window, 1024,768, OF_WINDOW); // this kicks off the running of my app // can be OF_WINDOW or OF_FULLSCREEN // pass in width and height too: - ofRunApp( new testApp()); + //ofRunApp( new testApp()); + ofRunFensterApp( new testApp()); } |
