| 45 | } |
| 46 | |
| 47 | void QuickTimeSampleApp::keyDown( KeyEvent event ) |
| 48 | { |
| 49 | #if ! defined( CINDER_ANDROID ) |
| 50 | if( event.getChar() == 'o' ) { |
| 51 | fs::path moviePath = getOpenFilePath(); |
| 52 | if( ! moviePath.empty() ) |
| 53 | loadMovieFile( moviePath ); |
| 54 | } |
| 55 | #endif |
| 56 | } |
| 57 | |
| 58 | void QuickTimeSampleApp::loadMovieFile( const fs::path &moviePath ) |
| 59 | { |
nothing calls this directly
no test coverage detected