view aubioOnsetDetectorOFvisualiser/src/main.cpp @ 4:fb106f14e0a4

Streamlined the object, getting rid of sigmal outlet, adding in buffer and hopsize changes - needs to be fixed for slope onset - but median working, added the max external
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Thu, 18 Oct 2012 17:12:05 +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());

}