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

◆ colorBoost() [1/2]

void fl::CRGB::colorBoost ( const CRGB * src,
CRGB * dst,
size_t count,
EaseType saturation_function = EaseType::EASE_NONE,
EaseType luminance_function = EaseType::EASE_NONE )
static

Definition at line 71 of file crgb_extra.cpp.hpp.

71 {
72 for (size_t i = 0; i < count; i++) {
73 dst[i] = src[i].colorBoost(saturation_function, luminance_function);
74 }
75}
CRGB colorBoost(EaseType saturation_function=EaseType::EASE_NONE, EaseType luminance_function=EaseType::EASE_NONE) const FL_NOEXCEPT

References CRGB(), and colorBoost().

+ Here is the call graph for this function: