| 762 | } |
| 763 | |
| 764 | void MovieLoader::waitForLoaded() const |
| 765 | { |
| 766 | while( ! mObj->mLoaded ) { |
| 767 | cinder::sleep( 250 ); // its documentation says not to call GetMovieLoadState more often than once a quarter-second |
| 768 | updateLoadState(); |
| 769 | } |
| 770 | } |
| 771 | |
| 772 | void MovieLoader::waitForPlayable() const |
| 773 | { |
no test coverage detected