FastLED 3.9.15
Loading...
Searching...
No Matches
u8x32.h
Go to the documentation of this file.
1
3
4#pragma once
5
7
8namespace fl {
9namespace simd {
10
11//==============================================================================
12// u8x32 Load/Store Operations
13//==============================================================================
14
15using platforms::load_u8_32; // ok bare using
16using platforms::store_u8_32; // ok bare using
17
18//==============================================================================
19// u8x32 Average Operations
20//==============================================================================
21
23using platforms::avg_round_u8_32; // ok bare using
24
25//==============================================================================
26// u8x32 ↔ u16x16 Widening/Narrowing
27//==============================================================================
28
30using platforms::widen_lo_u8x32_to_u16; // ok bare using
31
33using platforms::widen_hi_u8x32_to_u16; // ok bare using
34
36using platforms::narrow_u16x16_to_u8; // ok bare using
37
38} // namespace simd
39} // namespace fl
SIMD register type aliases.
Base definition for an LED controller.
Definition crgb.hpp:179