diff options
| author | tim <tim@gray.(none)> | 2014-04-18 09:28:31 +0100 |
|---|---|---|
| committer | tim <tim@gray.(none)> | 2014-04-18 09:28:31 +0100 |
| commit | ba9af7648a79b54836019ca792e40e81ca863c86 (patch) | |
| tree | 10cf27eca307caabcd45cdab53067cded31961f8 /liveengineUnmapped/ofxSVGTiny/example/src/main.cpp | |
| parent | 9d46e74d0f6e9c240bb5f0597ff75b5415a4a5a1 (diff) | |
good to go
Diffstat (limited to 'liveengineUnmapped/ofxSVGTiny/example/src/main.cpp')
| -rw-r--r-- | liveengineUnmapped/ofxSVGTiny/example/src/main.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/liveengineUnmapped/ofxSVGTiny/example/src/main.cpp b/liveengineUnmapped/ofxSVGTiny/example/src/main.cpp new file mode 100644 index 0000000..6a32c6a --- /dev/null +++ b/liveengineUnmapped/ofxSVGTiny/example/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()); + +} |
