summaryrefslogtreecommitdiff
path: root/ofxHelios/example/src/main.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@getdrop.com>2018-01-28 22:20:49 +0000
committerTim Redfern <tim@getdrop.com>2018-01-28 22:20:49 +0000
commit64c89ab53447a004002ec0b0db94fd0a1e632cf6 (patch)
tree65ce3b4802bbb0656cc1a8c843c81d7a3fcda8c9 /ofxHelios/example/src/main.cpp
parent404746784ce6ef2b87c396a12451947fee28b244 (diff)
POC driver
Diffstat (limited to 'ofxHelios/example/src/main.cpp')
-rw-r--r--ofxHelios/example/src/main.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/ofxHelios/example/src/main.cpp b/ofxHelios/example/src/main.cpp
new file mode 100644
index 0000000..fc3ded3
--- /dev/null
+++ b/ofxHelios/example/src/main.cpp
@@ -0,0 +1,12 @@
+#include "ofMain.h"
+#include "ofApp.h"
+
+//========================================================================
+int main( ){
+ ofSetupOpenGL(1024,1024,OF_WINDOW);
+ // this kicks off the running of my app
+ // can be OF_WINDOW or OF_FULLSCREEN
+ // pass in width and height too:
+ ofRunApp( new testApp());
+
+}