summaryrefslogtreecommitdiff
path: root/ofAsterisk/src/main.cpp
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2012-11-29 19:13:19 +0000
committerComment <tim@gray.(none)>2012-11-29 19:13:19 +0000
commit7ae1f870faebb65e9ee3a064fc43ef2fc6955a84 (patch)
tree461ad1daea435954a994a2aac0157972d5d51e74 /ofAsterisk/src/main.cpp
parent8ccec15ca16cc78c625d02a56e73ff3b84858197 (diff)
work on asterisk plugin
Diffstat (limited to 'ofAsterisk/src/main.cpp')
-rwxr-xr-xofAsterisk/src/main.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/ofAsterisk/src/main.cpp b/ofAsterisk/src/main.cpp
new file mode 100755
index 0000000..6042c32
--- /dev/null
+++ b/ofAsterisk/src/main.cpp
@@ -0,0 +1,16 @@
+#include "ofMain.h"
+#include "testApp.h"
+#include "ofAppGlutWindow.h"
+
+//========================================================================
+int main( ){
+
+ ofAppGlutWindow window;
+ ofSetupOpenGL(&window, 100,100, 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());
+
+}