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

◆ nblend() [2/4]

void fl::nblend ( CHSV * existing,
const CHSV * overlay,
fl::u16 count,
fract8 amountOfOverlay,
TGradientDirectionCode directionCode )

Definition at line 122 of file colorutils.cpp.

123 {
124 if (existing == overlay)
125 return;
126 for (fl::u16 i = count; i; --i) {
127 nblend(*existing, *overlay, amountOfOverlay, directionCode);
128 ++existing;
129 ++overlay;
130 }
131}
CRGB & nblend(CRGB &existing, const CRGB &overlay, fract8 amountOfOverlay)

References nblend().

+ Here is the call graph for this function: