* @brief Normalize a non-zero length vector to unit length. */
| 327 | * @brief Normalize a non-zero length vector to unit length. |
| 328 | */ |
| 329 | static ASTCENC_SIMD_INLINE vfloat4 normalize(vfloat4 a) |
| 330 | { |
| 331 | vfloat4 length = dot(a, a); |
| 332 | return a / sqrt(length); |
| 333 | } |
| 334 | |
| 335 | /** |
| 336 | * @brief Normalize a vector, returning @c safe if len is zero. |