diff options
| author | Chris Kiefer <chrisk13fer@gmail.com> | 2011-11-03 18:05:24 +0000 |
|---|---|---|
| committer | Chris Kiefer <chrisk13fer@gmail.com> | 2011-11-03 18:05:24 +0000 |
| commit | d09cc45d859aabbf76306fee49c1cec202c4f808 (patch) | |
| tree | 3ddbfeaae1eb3372cb4e9169e724a304cffdbe01 /ofxMaxim/ofxMaximExamples007OSX/ofMaximExample007OSX/src/main.cpp | |
| parent | 1d99419e6b50b4cacb776fb711874de03dbadc2f (diff) | |
maxiAtoms
Diffstat (limited to 'ofxMaxim/ofxMaximExamples007OSX/ofMaximExample007OSX/src/main.cpp')
| -rw-r--r-- | ofxMaxim/ofxMaximExamples007OSX/ofMaximExample007OSX/src/main.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ofxMaxim/ofxMaximExamples007OSX/ofMaximExample007OSX/src/main.cpp b/ofxMaxim/ofxMaximExamples007OSX/ofMaximExample007OSX/src/main.cpp new file mode 100644 index 0000000..6a32c6a --- /dev/null +++ b/ofxMaxim/ofxMaximExamples007OSX/ofMaximExample007OSX/src/main.cpp @@ -0,0 +1,16 @@ +#include "ofMain.h" +#include "testApp.h" +#include "ofAppGlutWindow.h" + +//======================================================================== +int main( ){ + + ofAppGlutWindow window; + ofSetupOpenGL(&window, 1024,768, OF_WINDOW); // <-------- setup the GL context + + // this kicks off the running of my app + // can be OF_WINDOW or OF_FULLSCREEN + // pass in width and height too: + ofRunApp( new testApp()); + +} |
