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

◆ applyGamma_video() [1/3]

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

Definition at line 1069 of file colorutils.cpp.

1069 {
1070 CRGB adj;
1071 adj.r = applyGamma_video(orig.r, gamma);
1072 adj.g = applyGamma_video(orig.g, gamma);
1073 adj.b = applyGamma_video(orig.b, gamma);
1074 return adj;
1075}
fl::u8 applyGamma_video(fl::u8 brightness, float gamma)
Representation of an RGB pixel (Red, Green, Blue)
Definition crgb.h:86

References applyGamma_video().

+ Here is the call graph for this function: