| 253 | // clang-format on |
| 254 | |
| 255 | bool ADSRNode::finished(ContextRenderLock& r) |
| 256 | { |
| 257 | if (!r.context()) |
| 258 | return true; |
| 259 | |
| 260 | double now = r.context()->currentTime(); |
| 261 | return adsr_impl->_lerp.size() > 0; |
| 262 | } |
| 263 | |
| 264 | void ADSRNode::process(ContextRenderLock& r, int bufferSize) |
| 265 | { |
no test coverage detected