FastLED 3.9.15
Loading...
Searching...
No Matches

◆ blend() [4/4]

CRGB * fl::blend ( const CRGB * src1,
const CRGB * src2,
CRGB * dest,
fl::u16 count,
fract8 amountOfsrc2 )

Definition at line 67 of file colorutils.cpp.

68 {
69 for (fl::u16 i = 0; i < count; ++i) {
70 dest[i] = blend(src1[i], src2[i], amountOfsrc2);
71 }
72 return dest;
73}
CRGB blend(const CRGB &p1, const CRGB &p2, fract8 amountOfP2)

References blend().

+ Here is the call graph for this function: