| 221 | } |
| 222 | |
| 223 | void NodeBasicTest::draw() |
| 224 | { |
| 225 | if( mMonitor && mMonitor->getNumConnectedInputs() ) { |
| 226 | vec2 padding( 20, 20 ); |
| 227 | |
| 228 | Rectf scopeRect( padding.x, padding.y, app::getWindowWidth() - padding.x, app::getWindowHeight() - padding.y ); |
| 229 | drawAudioBuffer( mMonitor->getBuffer(), scopeRect, true ); |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | // ----------------------------------------------------------------------- |
| 234 | // UI |
nothing calls this directly
no test coverage detected