| 378 | |
| 379 | |
| 380 | void prepareSettings( CaptureBasicApp::Settings* settings ) |
| 381 | { |
| 382 | #if defined( CINDER_ANDROID ) |
| 383 | settings->setKeepScreenOn( true ); |
| 384 | #endif |
| 385 | |
| 386 | #if defined( CINDER_MSW ) |
| 387 | // Enable console window on Windows for debugging |
| 388 | settings->setConsoleWindowEnabled( true ); |
| 389 | #endif |
| 390 | } |
| 391 | |
| 392 | CINDER_APP( CaptureBasicApp, RendererGl, prepareSettings ) |
nothing calls this directly
no test coverage detected