From e214e470dd141e0ed2972acd6ed266027c3f6dab Mon Sep 17 00:00:00 2001 From: Comment Date: Tue, 30 Apr 2013 00:52:57 +0100 Subject: succesful record & exploring V2 --- TRSS_02_rec/src/main.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 TRSS_02_rec/src/main.cpp (limited to 'TRSS_02_rec/src/main.cpp') diff --git a/TRSS_02_rec/src/main.cpp b/TRSS_02_rec/src/main.cpp new file mode 100644 index 0000000..ddc05ed --- /dev/null +++ b/TRSS_02_rec/src/main.cpp @@ -0,0 +1,17 @@ + +#include "testApp.h" +#include "ofMain.h" +#include "ofAppGlutWindow.h" + +//======================================================================== +int main( ){ + + ofAppGlutWindow window; + ofSetupOpenGL(&window, 640*2,480*2, 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()); + +} -- cgit v1.2.3