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

◆ operator&() [1/2]

FASTLED_FORCE_INLINE CRGB fl::operator& ( const CRGB & p1,
const CRGB & p2 )

Combine two CRGB objects, taking the smallest value of each channel.

Definition at line 787 of file crgb.h.

788{
789 return CRGB( p1.r < p2.r ? p1.r : p2.r,
790 p1.g < p2.g ? p1.g : p2.g,
791 p1.b < p2.b ? p1.b : p2.b);
792}
fl::CRGB CRGB
Definition video.h:15

References FASTLED_FORCE_INLINE, and FL_NOEXCEPT.

Referenced by FL_DISABLE_WARNING().

+ Here is the caller graph for this function: