summaryrefslogtreecommitdiff
path: root/testpoints/src/main.cpp
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2013-06-24 23:18:03 +0100
committerComment <tim@gray.(none)>2013-06-24 23:18:03 +0100
commit11229ede83c48fab01e6e566155536b5e7e9d762 (patch)
treedcd2671c419bdbddde9191712dc3cf5ab2a98f04 /testpoints/src/main.cpp
parentff979a86dc8f031c823cd8806324b0e8c4ca069b (diff)
yay
Diffstat (limited to 'testpoints/src/main.cpp')
-rw-r--r--testpoints/src/main.cpp18
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);
+
+}