view aubioOnsetDetectorOFvisualiser/src/main.cpp @ 5:eba88b84b5ca

added external, some code changes
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Mon, 22 Oct 2012 20:25:14 +0100
parents 979125db34ab
children
line wrap: on
line source
#include "ofMain.h"
#include "testApp.h"
#include "ofAppGlutWindow.h"

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

    ofAppGlutWindow window;
	ofSetupOpenGL(&window, 640,480, OF_WINDOW);			// <-------- setup the GL context

	// this kicks off the running of my app
	// can be OF_WINDOW or OF_FULLSCREEN
	// pass in width and height too:
	ofRunApp( new testApp());

}