diff options
| author | Comment <tim@gray.(none)> | 2013-04-30 00:52:57 +0100 |
|---|---|---|
| committer | Comment <tim@gray.(none)> | 2013-04-30 00:52:57 +0100 |
| commit | e214e470dd141e0ed2972acd6ed266027c3f6dab (patch) | |
| tree | 76d8b3db0fee086e574dacbd11e8e7ed867de481 /TRSS_02_rec/src/main.cpp | |
| parent | f9321366d899dcdb07d1d92440933edee5f03a8d (diff) | |
succesful record & exploring V2
Diffstat (limited to 'TRSS_02_rec/src/main.cpp')
| -rw-r--r-- | TRSS_02_rec/src/main.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/TRSS_02_rec/src/main.cpp b/TRSS_02_rec/src/main.cpp new file mode 100644 index 0000000..ddc05ed --- /dev/null +++ b/TRSS_02_rec/src/main.cpp @@ -0,0 +1,17 @@ + +#include "testApp.h" +#include "ofMain.h" +#include "ofAppGlutWindow.h" + +//======================================================================== +int main( ){ + + ofAppGlutWindow window; + ofSetupOpenGL(&window, 640*2,480*2, 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()); + +} |
