view main.mm @ 4:79c7cf39a0a0

Fixed new mesh crash - static array bounds. Made home made mutex for wavetable access. Less clicks?
author Robert Tubb <rt300@eecs.qmul.ac.uk>
date Mon, 10 Dec 2012 13:00:03 +0000
parents c667dfe12d47
children d5758530a039
line wrap: on
line source
#include "ofMain.h"
#include "testApp.h"
#include "globalForces.h"

GlobalForces globalForces;
GlobalUI globalUI;

int main(){
	//ofSetupOpenGL(480,320, OF_FULLSCREEN);			// <-------- setup the GL context
    ofSetupOpenGL(1024,768, OF_FULLSCREEN);	
	ofRunApp(new testApp);

}