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

◆ blend() [4/4]

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

Definition at line 66 of file colorutils.cpp.

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

References blend().

+ Here is the call graph for this function: