summaryrefslogtreecommitdiff
path: root/06_performance/src/main.cpp
blob: 464bd9db1c77ce772133c0c907c54d622fab1de3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "ofMain.h"
#include "testApp.h"

//========================================================================
int main( ){

	//ofSetupOpenGL(4080,768, OF_WINDOW);			// <-------- setup the GL context
<<<<<<< HEAD
	ofSetupOpenGL(2400,450, OF_WINDOW);			// <-------- setup the GL context
=======
	ofSetupOpenGL(1400,262, OF_WINDOW);			// <-------- setup the GL context
>>>>>>> fd8dc2aa23c4bbc297e835e4f920aaf5342aba5e



	// this kicks off the running of my app
	// can be OF_WINDOW or OF_FULLSCREEN
	// pass in width and height too:

	ofRunApp(new testApp);

}