| 8 | namespace fl { |
| 9 | |
| 10 | Fx2dTo1d::Fx2dTo1d(u16 numLeds, Fx2dPtr fx2d, const ScreenMap &screenMap, |
| 11 | InterpolationMode mode) |
| 12 | : Fx1d(numLeds), mFx2d(fx2d), mScreenMap(screenMap), |
| 13 | mInterpolationMode(mode), mGrid(new CRGB[fx2d->getNumLeds()]) {} // ok bare allocation (array new) |
| 14 | |
| 15 | void Fx2dTo1d::setFx2d(Fx2dPtr fx2d) { |
| 16 | mFx2d = fx2d; |
nothing calls this directly
no test coverage detected