diff options
Diffstat (limited to 'testpoints/src/main.cpp')
| -rw-r--r-- | testpoints/src/main.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testpoints/src/main.cpp b/testpoints/src/main.cpp new file mode 100644 index 0000000..cfae893 --- /dev/null +++ b/testpoints/src/main.cpp @@ -0,0 +1,18 @@ +#include "ofMain.h" +#include "testApp.h" + +//======================================================================== +int main( ){ + + //ofSetupOpenGL(4080,768, OF_WINDOW); // <-------- setup the GL context + ofSetupOpenGL(800,600, 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); + +} |
