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

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

References nblend().

+ Here is the call graph for this function: