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

◆ applyGamma_video() [2/3]

CRGB fl::applyGamma_video ( const CRGB & orig,
float gammaR,
float gammaG,
float gammaB )

Definition at line 1076 of file colorutils.cpp.

1077 {
1078 CRGB adj;
1079 adj.r = applyGamma_video(orig.r, gammaR);
1080 adj.g = applyGamma_video(orig.g, gammaG);
1081 adj.b = applyGamma_video(orig.b, gammaB);
1082 return adj;
1083}
uint8_t applyGamma_video(uint8_t brightness, float gamma)
Representation of an RGB pixel (Red, Green, Blue)
Definition crgb.h:55

References applyGamma_video().

+ Here is the call graph for this function: