| 40 | |
| 41 | ~Frame() FL_NOEXCEPT; |
| 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); |
no test coverage detected