| 10 | namespace fl { |
| 11 | |
| 12 | void FxLayer::setFx(fl::shared_ptr<Fx> newFx) { |
| 13 | if (newFx != fx) { |
| 14 | release(); |
| 15 | fx = newFx; |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | void FxLayer::draw(fl::u32 now, float speed, const AudioBatch *audio) { |
| 20 | // assert(fx); |
no test coverage detected