summaryrefslogtreecommitdiff
path: root/le_new/src/main.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2014-04-26 18:20:21 +0100
committerTim Redfern <tim@eclectronics.org>2014-04-26 18:20:21 +0100
commit6f74f80e4c116c61b4734ffbae86aff881daaf5b (patch)
treec0044aa2efefd53711cba63ed91860e265831703 /le_new/src/main.cpp
parentba9af7648a79b54836019ca792e40e81ca863c86 (diff)
started GLFW version
Diffstat (limited to 'le_new/src/main.cpp')
-rw-r--r--le_new/src/main.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/le_new/src/main.cpp b/le_new/src/main.cpp
new file mode 100644
index 0000000..fde3a48
--- /dev/null
+++ b/le_new/src/main.cpp
@@ -0,0 +1,17 @@
+#include "ofMain.h"
+#include "testApp.h"
+#include "ofxFensterManager.h"
+#include "ofAppGlutWindow.h"
+
+//========================================================================
+int main( ){
+
+ //ofxFensterManager::setup(4080,768,OF_WINDOW);
+ ofxFensterManager::setup(1440,270,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 ofApp());
+
+}