| 54 | } |
| 55 | |
| 56 | void MovieWriterApp::draw() |
| 57 | { |
| 58 | gl::clear(); |
| 59 | gl::enableDepthRead(); |
| 60 | gl::color( Color( CM_HSV, fmod( getElapsedFrames() / 30.0f, 1.0f ), 1, 1 ) ); |
| 61 | gl::draw( geom::Circle().center( getWindowCenter() ).radius( getElapsedFrames() ).subdivisions( 100 ) ); |
| 62 | } |
| 63 | |
| 64 | CINDER_APP( MovieWriterApp, RendererGl, MovieWriterApp::prepareSettings ) |
nothing calls this directly
no test coverage detected