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

◆ blend() [2/4]

CHSV * fl::blend ( const CHSV * src1,
const CHSV * src2,
CHSV * dest,
fl::u16 count,
fract8 amountOfsrc2,
TGradientDirectionCode directionCode )

Definition at line 140 of file colorutils.cpp.

141 {
142 for (fl::u16 i = 0; i < count; ++i) {
143 dest[i] = blend(src1[i], src2[i], amountOfsrc2, directionCode);
144 }
145 return dest;
146}
CRGB blend(const CRGB &p1, const CRGB &p2, fract8 amountOfP2)

References blend().

+ Here is the call graph for this function: