| 42 | fl::span<CRGB> rgb() { return fl::span<CRGB>(mRgb.data(), mPixelsCount); } |
| 43 | fl::span<const CRGB> rgb() const { return fl::span<const CRGB>(mRgb.data(), mPixelsCount); } |
| 44 | size_t size() const { return mPixelsCount; } |
| 45 | void copy(const Frame &other); |
| 46 | void interpolate(const Frame &frame1, const Frame &frame2, |
| 47 | u8 amountOfFrame2); |
no outgoing calls
no test coverage detected