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

◆ operator>() [2/8]

FASTLED_FORCE_INLINE bool fl::operator> ( const CRGB & lhs,
const CRGB & rhs )

Check if the sum of the color channels in one CRGB object is greater than another.

Definition at line 754 of file crgb.h.

755{
756 u16 sl, sr;
757 sl = lhs.r + lhs.g + lhs.b;
758 sr = rhs.r + rhs.g + rhs.b;
759 return sl > sr;
760}

References FASTLED_FORCE_INLINE, and FL_NOEXCEPT.

Referenced by FL_DISABLE_WARNING().

+ Here is the caller graph for this function: