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 142 of file colorutils.cpp.hpp.

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

References blend().

+ Here is the call graph for this function: