annotate ofxPreciseOnsetDetectorOffline/main.cpp @ 8:184a7c232049 tip

changed files since updating computer
author Venetian
date Thu, 14 Aug 2014 17:53:57 +0100
parents 7ec1ed0b2eb0
children
rev   line source
andrew@2 1 #include "testApp.h"
andrew@2 2 #include "ofAppGlutWindow.h"
andrew@2 3
andrew@2 4 //--------------------------------------------------------------
andrew@2 5 int main(){
andrew@2 6 ofAppGlutWindow window; // create a window
andrew@2 7 // set width, height, mode (OF_WINDOW or OF_FULLSCREEN)
andrew@2 8 ofSetupOpenGL(&window, 1024, 768, OF_WINDOW);
andrew@2 9 ofRunApp(new testApp()); // start the app
andrew@2 10 }