comparison src/main.cpp @ 0:572c856e38ac

Starting up openFrameworks project for audio time warping. The ofxFileReader goes in addons of your OF folder, the libraries and source (chromogram, fftw and source code src+ timewarp) are probably best kept in the repository, then dragged into the project afresh. That way, as we update the repository, the code that the openFrameworks project looks for will be updated.
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Tue, 17 May 2011 08:48:58 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:572c856e38ac
1 #include "ofMain.h"
2 #include "testApp.h"
3 #include "ofAppGlutWindow.h"
4
5 //========================================================================
6 int main( ){
7
8 ofAppGlutWindow window;
9 ofSetupOpenGL(&window, 1024,768, OF_WINDOW); // <-------- setup the GL context
10
11 // this kicks off the running of my app
12 // can be OF_WINDOW or OF_FULLSCREEN
13 // pass in width and height too:
14 ofRunApp( new testApp());
15
16 }