* @brief Factory that returns a vector loaded from 32B aligned memory. */
| 106 | * @brief Factory that returns a vector loaded from 32B aligned memory. |
| 107 | */ |
| 108 | static ASTCENC_SIMD_INLINE vfloat8 loada(const float* p) |
| 109 | { |
| 110 | return vfloat8(p); |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * @brief The vector ... |