diff options
| author | Tim Redfern <tim@eclectronics.org> | 2014-03-04 12:35:35 +0000 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2014-03-04 12:35:35 +0000 |
| commit | 3726e496813e556e88baf5dc8acabe290a1a66f4 (patch) | |
| tree | ec1027c650cb231c6835b2e85a5eb3021f8c0f61 /test-instagram/src/main.cpp | |
| parent | 8dd6225e9e0bc6e2ae204b434369259a845a7979 (diff) | |
https session not working
Diffstat (limited to 'test-instagram/src/main.cpp')
| -rw-r--r-- | test-instagram/src/main.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test-instagram/src/main.cpp b/test-instagram/src/main.cpp new file mode 100644 index 0000000..6a32c6a --- /dev/null +++ b/test-instagram/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()); + +} |
