annotate src/main.cpp @ 45:90ad1817ca56

Working version of the score follower using annotations read in from RWC set. Links player to midi file from rwc set
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Sun, 05 Feb 2012 10:00:34 +0000
parents 5a11b19906c7
children
rev   line source
andrew@0 1 #include "ofMain.h"
andrew@0 2 #include "testApp.h"
andrew@0 3 #include "ofAppGlutWindow.h"
andrew@0 4
andrew@0 5 //========================================================================
andrew@24 6 int main(int argc, char * const argv[]){
andrew@0 7
andrew@24 8 if (argc > 0){
andrew@24 9 cout << "arg is " << argv[1] << endl;
andrew@24 10 }
andrew@0 11 ofAppGlutWindow window;
andrew@0 12 ofSetupOpenGL(&window, 1024,768, OF_WINDOW); // <-------- setup the GL context
andrew@0 13
andrew@0 14 // this kicks off the running of my app
andrew@0 15 // can be OF_WINDOW or OF_FULLSCREEN
andrew@0 16 // pass in width and height too:
andrew@0 17 ofRunApp( new testApp());
andrew@0 18
andrew@0 19 }
andrew@24 20