| 575 | } |
| 576 | |
| 577 | void prepareSettings( CaptureTestApp::Settings* settings ) |
| 578 | { |
| 579 | #if defined( CINDER_ANDROID ) |
| 580 | settings->setKeepScreenOn( true ); |
| 581 | #endif |
| 582 | |
| 583 | #if defined( CINDER_MSW ) |
| 584 | // Enable console window on Windows for debugging |
| 585 | settings->setConsoleWindowEnabled( true ); |
| 586 | #endif |
| 587 | } |
| 588 | |
| 589 | CINDER_APP( CaptureTestApp, RendererGl, prepareSettings ) |
nothing calls this directly
no test coverage detected