diff options
| author | mick grierson <mickgrierson@gmail.com> | 2015-09-22 09:21:43 +0100 |
|---|---|---|
| committer | mick grierson <mickgrierson@gmail.com> | 2015-09-22 09:21:43 +0100 |
| commit | 5be3472f0f61d2e479f42759fed6fafd2a0e739a (patch) | |
| tree | 49f128d4b56d43b3499ffd824b57b7f8b8d8345a /ofxMaxim/openFrameworksExamples/OSX/emptyExample/src/main.cpp | |
| parent | c814dd99dc3c347914c2057b77d1390ba41cfae5 (diff) | |
more work for kadenze mooc
Diffstat (limited to 'ofxMaxim/openFrameworksExamples/OSX/emptyExample/src/main.cpp')
| -rw-r--r-- | ofxMaxim/openFrameworksExamples/OSX/emptyExample/src/main.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ofxMaxim/openFrameworksExamples/OSX/emptyExample/src/main.cpp b/ofxMaxim/openFrameworksExamples/OSX/emptyExample/src/main.cpp new file mode 100644 index 0000000..8bce185 --- /dev/null +++ b/ofxMaxim/openFrameworksExamples/OSX/emptyExample/src/main.cpp @@ -0,0 +1,14 @@ +#include "ofMain.h" +#include "ofApp.h" + +//======================================================================== +int main( ){ + + ofSetupOpenGL(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 ofApp()); + +} |
