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

◆ nscale8_constexpr()

CRGB CRGB::nscale8_constexpr ( const CRGB scaledown) const
constexpr

Definition at line 103 of file crgb.hpp.

104{
105 return CRGB(
106 scale8_constexpr(r, scaledown.r),
107 scale8_constexpr(g, scaledown.g),
108 scale8_constexpr(b, scaledown.b)
109 );
110}
constexpr uint8_t scale8_constexpr(uint8_t i, fract8 scale)
Definition scale8.h:110
FASTLED_FORCE_INLINE CRGB()=default
Default constructor.

References CRGB(), and scale8_constexpr().

+ Here is the call graph for this function: