view main.mm @ 42:2bd658b44c2d

buttons dont lite up back to menu shows in more appropriate times
author Robert Tubb <rt300@eecs.qmul.ac.uk>
date Mon, 08 Dec 2014 18:29:10 +0000
parents 8d7ae43b2edd
children
line wrap: on
line source
#include "ofMain.h"

#include "ofAppiOSWindow.h"
#include "testApp.h"

int main(){
    ofAppiOSWindow * window = new ofAppiOSWindow();
    window->enableHardwareOrientation();
    window->enableOrientationAnimation();
    window->enableAntiAliasing(4);
    window->enableDepthBuffer();
	window->enableRetina();
    
    ofSeedRandom();
    
	ofSetupOpenGL(window, 768, 1024,OF_FULLSCREEN);
	ofRunApp(new testApp);
}