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

◆ nblend() [2/4]

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

Definition at line 121 of file colorutils.cpp.

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

References nblend().

+ Here is the call graph for this function: