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

◆ nblend() [4/4]

void fl::nblend ( CRGB * existing,
const CRGB * overlay,
uint16_t count,
fract8 amountOfOverlay )

Definition at line 51 of file colorutils.cpp.

52 {
53 for (uint16_t i = count; i; --i) {
54 nblend(*existing, *overlay, amountOfOverlay);
55 ++existing;
56 ++overlay;
57 }
58}
CRGB & nblend(CRGB &existing, const CRGB &overlay, fract8 amountOfOverlay)

References nblend().

+ Here is the call graph for this function: