| 42 | uint32_t DC6::getFrameCount() const { return _framesPerDirection; } |
| 43 | void DC6::setPalette(const Palette &palette) { |
| 44 | enum class eScanlineType { EndOfLine, RunOfTransparentPixels, RunOfOpaquePixels }; |
| 45 | auto scanlineType = [](const std::byte b) -> eScanlineType { |
| 46 | if (b == DC6EndOfScanline) |
| 47 | return eScanlineType::EndOfLine; |
nothing calls this directly
no outgoing calls
no test coverage detected