* @brief Factory that returns a vector loaded from 16B aligned memory. */
| 130 | * @brief Factory that returns a vector loaded from 16B aligned memory. |
| 131 | */ |
| 132 | static ASTCENC_SIMD_INLINE vfloat4 loada(const float* p) |
| 133 | { |
| 134 | return vfloat4(vld1q_f32(p)); |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * @brief Return a swizzled float 2. |