From cdd0e0b630bd3a5a8ba15dbce7f5e03221b72f92 Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 19 Jun 2013 20:03:17 +0100 Subject: working on performance version --- 06_performance/src/main.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 06_performance/src/main.cpp (limited to '06_performance/src/main.cpp') diff --git a/06_performance/src/main.cpp b/06_performance/src/main.cpp new file mode 100644 index 0000000..58263a2 --- /dev/null +++ b/06_performance/src/main.cpp @@ -0,0 +1,17 @@ +#include "ofMain.h" +#include "testApp.h" + +//======================================================================== +int main( ){ + + ofSetupOpenGL(4080,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); + +} -- cgit v1.2.3