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

◆ operator-() [1/2]

FASTLED_FORCE_INLINE s16x16x4 fl::s16x16x4::operator- ( ) const
inline

Definition at line 60 of file s16x16x4.h.

60 {
61 // Unary negation: -x = 0 - x
62 auto zero = simd::set1_u32_4(0);
63 return from_raw(simd::sub_i32_4(zero, raw));
64 }
static FASTLED_FORCE_INLINE s16x16x4 from_raw(simd::simd_u32x4 r)
Definition s16x16x4.h:24
simd::simd_u32x4 raw
Definition s16x16x4.h:20

References FASTLED_FORCE_INLINE.