@copydoc blend(const CRGB*, const CRGB*, CRGB*, fl::u16, fract8)
| 163 | |
| 164 | /// @copydoc blend(const CRGB*, const CRGB*, CRGB*, fl::u16, fract8) |
| 165 | inline void blend(fl::span<const CRGB> src1, fl::span<const CRGB> src2, |
| 166 | fl::span<CRGB> dest, fract8 amountOfsrc2) FL_NOEXCEPT { |
| 167 | blend(src1.data(), src2.data(), dest.data(), |
| 168 | static_cast<fl::u16>(dest.size()), amountOfsrc2); |
| 169 | } |
| 170 | |
| 171 | /// @copydoc blend(const CRGB*, const CRGB*, CRGB*, fl::u16, fract8) |
| 172 | /// @param directionCode the direction to travel around the color wheel |
no test coverage detected