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

◆ operator==() [2/14]

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

Check if two CRGB objects have the same color data.

Definition at line 733 of file crgb.h.

734{
735 return (lhs.r == rhs.r) && (lhs.g == rhs.g) && (lhs.b == rhs.b);
736}

References FASTLED_FORCE_INLINE, and FL_NOEXCEPT.

Referenced by FL_DISABLE_WARNING().

+ Here is the caller graph for this function: