summaryrefslogtreecommitdiff
path: root/tshirtmapping/src/main.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@gray.(none)>2012-11-02 17:26:53 +0000
committerTim Redfern <tim@gray.(none)>2012-11-02 17:26:53 +0000
commitcaace54e8adb8f0ad13303f6f387f3f62e429579 (patch)
tree56336888e8e651824f60a85a3abeadec5e9c9fc8 /tshirtmapping/src/main.cpp
parent796d647fd38f7cf01cb70bbb0700b75427e42d55 (diff)
kinect integration
Diffstat (limited to 'tshirtmapping/src/main.cpp')
-rwxr-xr-xtshirtmapping/src/main.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/tshirtmapping/src/main.cpp b/tshirtmapping/src/main.cpp
new file mode 100755
index 0000000..6a32c6a
--- /dev/null
+++ b/tshirtmapping/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());
+
+}