| 38 | int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd){ |
| 39 | #else |
| 40 | int main(){ |
| 41 | #endif |
| 42 | ofAppGlutWindow window; // create a window |
| 43 | // set width, height, mode (OF_WINDOW or OF_FULLSCREEN) |
| 44 | ofSetupOpenGL(&window, 1300, 768, OF_WINDOW); |
| 45 | ofSetWindowTitle("Duration"); |
| 46 | ofRunApp(new testApp()); // start the app |
| 47 | } |
nothing calls this directly
no outgoing calls
no test coverage detected