* @brief Return the sqrt of the lanes in the vector. */
| 873 | * @brief Return the sqrt of the lanes in the vector. |
| 874 | */ |
| 875 | ASTCENC_SIMD_INLINE vfloat4 sqrt(vfloat4 a) |
| 876 | { |
| 877 | return vfloat4(_mm_sqrt_ps(a.m)); |
| 878 | } |
| 879 | |
| 880 | /** |
| 881 | * @brief Return lanes from @c b if @c cond is set, else @c a. |