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

◆ nscale8_constexpr()

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

Definition at line 112 of file crgb.hpp.

113{
114 return CRGB(
115 scale8_constexpr(r, scaledown.r),
116 scale8_constexpr(g, scaledown.g),
117 scale8_constexpr(b, scaledown.b)
118 );
119}
constexpr uint8_t scale8_constexpr(uint8_t i, fract8 scale)
Definition scale8.h:104
FASTLED_FORCE_INLINE CRGB()=default
Default constructor.

References CRGB(), and scale8_constexpr().

+ Here is the call graph for this function: