--------------------------------------------------------------
| 37 | |
| 38 | //-------------------------------------------------------------- |
| 39 | void testApp::setup(){ |
| 40 | |
| 41 | ofSetVerticalSync(true); |
| 42 | ofSetFrameRate(30); |
| 43 | ofBackground(.15*255); |
| 44 | ofEnableAlphaBlending(); |
| 45 | ofEnableSmoothing(); |
| 46 | ofSetEscapeQuitsApp(false); |
| 47 | |
| 48 | controller.setup(); |
| 49 | #ifdef TARGET_OSX |
| 50 | RemoveCocoaMenusFromGlut("Duration"); |
| 51 | #endif |
| 52 | } |
| 53 | |
| 54 | //-------------------------------------------------------------- |
| 55 | void testApp::update(){ |
nothing calls this directly
no outgoing calls
no test coverage detected