* @brief Normalize a non-zero length vector to unit length. */
| 351 | * @brief Normalize a non-zero length vector to unit length. |
| 352 | */ |
| 353 | static ASTCENC_SIMD_INLINE vfloat4 normalize(vfloat4 a) |
| 354 | { |
| 355 | vfloat4 length = dot(a, a); |
| 356 | return a / sqrt(length); |
| 357 | } |
| 358 | |
| 359 | /** |
| 360 | * @brief Normalize a vector, returning @c safe if len is zero. |