annotate annotationCalculatorSrc/main.cpp @ 56:4394c9490716 tip

minor changes
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Mon, 24 Dec 2012 18:58:39 +0000
parents b7ad807c9cde
children
rev   line source
andrew@43 1 #include "ofMain.h"
andrew@43 2 #include "testApp.h"
andrew@43 3 #include "ofAppGlutWindow.h"
andrew@43 4
andrew@43 5 //========================================================================
andrew@43 6 int main( ){
andrew@43 7
andrew@43 8 ofAppGlutWindow window;
andrew@43 9 ofSetupOpenGL(&window, 1024,768, OF_WINDOW); // <-------- setup the GL context
andrew@43 10
andrew@43 11 // this kicks off the running of my app
andrew@43 12 // can be OF_WINDOW or OF_FULLSCREEN
andrew@43 13 // pass in width and height too:
andrew@43 14 ofRunApp( new testApp());
andrew@43 15
andrew@43 16 }