From 621674d6e9fb0024645cd0020c6afb51e4b4a7e9 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Tue, 21 Aug 2012 15:44:11 +0100 Subject: had enough --- gaunt01/src/main.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 gaunt01/src/main.cpp (limited to 'gaunt01/src/main.cpp') diff --git a/gaunt01/src/main.cpp b/gaunt01/src/main.cpp new file mode 100644 index 0000000..1f3ac12 --- /dev/null +++ b/gaunt01/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_FULLSCREEN ); // <-------- setup the GL context + printf("%ix%i on screen %ix%i\n",ofGetWidth(),ofGetHeight(),ofGetScreenWidth(),ofGetScreenHeight()); + // 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