blob: 872a5b50be97f9b60a4522642a461d2bbbd6b1d6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "testApp.h"
#include "ofAppGlutWindow.h"
//--------------------------------------------------------------
int main(){
ofAppGlutWindow window; // create a window
// set width, height, mode (OF_WINDOW or OF_FULLSCREEN)
ofSetupOpenGL(&window, 1024, 768, OF_WINDOW);
ofRunApp(new testApp()); // start the app
}
|