aboutsummaryrefslogtreecommitdiffstats
path: root/ofxMaxim/ofMaximExampleVS2010/src/main.cpp
diff options
context:
space:
mode:
authorChris Kiefer <chrisk13fer@gmail.com>2012-03-01 22:51:18 +0000
committerChris Kiefer <chrisk13fer@gmail.com>2012-03-01 22:51:18 +0000
commitfbcda84b635d4cb168ec0cadf6fd433c268023c2 (patch)
tree4b133bec4053a486499d85ad5dcad70d2dce079c /ofxMaxim/ofMaximExampleVS2010/src/main.cpp
parent090d3337fc0eca232ea1cc6ef5aa4f3c7d523e9f (diff)
parentea437a1b13955c474935914cc4237c4962102b8a (diff)
Merge branch 'master' of github.com:micknoise/Maximilian
Diffstat (limited to 'ofxMaxim/ofMaximExampleVS2010/src/main.cpp')
-rwxr-xr-xofxMaxim/ofMaximExampleVS2010/src/main.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/ofxMaxim/ofMaximExampleVS2010/src/main.cpp b/ofxMaxim/ofMaximExampleVS2010/src/main.cpp
new file mode 100755
index 0000000..6a32c6a
--- /dev/null
+++ b/ofxMaxim/ofMaximExampleVS2010/src/main.cpp
@@ -0,0 +1,16 @@
+#include "ofMain.h"
+#include "testApp.h"
+#include "ofAppGlutWindow.h"
+
+//========================================================================
+int main( ){
+
+ ofAppGlutWindow window;
+ ofSetupOpenGL(&window, 1024,768, 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());
+
+}