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

◆ applyGamma_video() [1/3]

CRGB fl::applyGamma_video ( const CRGB & orig,
float gamma )

Definition at line 1068 of file colorutils.cpp.

1068 {
1069 CRGB adj;
1070 adj.r = applyGamma_video(orig.r, gamma);
1071 adj.g = applyGamma_video(orig.g, gamma);
1072 adj.b = applyGamma_video(orig.b, gamma);
1073 return adj;
1074}
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: