summaryrefslogtreecommitdiff
path: root/gui/src/main.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@getdrop.com>2017-08-28 23:22:30 +0100
committerTim Redfern <tim@getdrop.com>2017-08-28 23:22:30 +0100
commit50d670c523ef4ee563ba961bd479b432516cefaf (patch)
treeed6d9ea45f84f2ad62b25dee7ad564d1c1a174b0 /gui/src/main.cpp
parentd8a46a6409286b3834bc609e4f34a09d48a8ae58 (diff)
initial chainimageset
Diffstat (limited to 'gui/src/main.cpp')
-rw-r--r--gui/src/main.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/gui/src/main.cpp b/gui/src/main.cpp
new file mode 100644
index 0000000..0346c1e
--- /dev/null
+++ b/gui/src/main.cpp
@@ -0,0 +1,19 @@
+#include "ofMain.h"
+#include "ofApp.h"
+
+//========================================================================
+int main(int argc, char *argv[]){
+ ofSetupOpenGL(1600,250,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:
+ ofApp *app = new ofApp();
+
+ app->arguments = vector<string>(argv, argv + argc);
+
+ ofRunApp(app); // start the app
+
+
+}
+ \ No newline at end of file