* @brief Factory that returns a vector loaded from 16B aligned memory. */
| 138 | * @brief Factory that returns a vector loaded from 16B aligned memory. |
| 139 | */ |
| 140 | static ASTCENC_SIMD_INLINE vfloat4 loada(const float* p) |
| 141 | { |
| 142 | return vfloat4(_mm_load_ps(p)); |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * @brief Return a swizzled float 2. |