* @brief Return a float value for an integer vector. */
| 957 | * @brief Return a float value for an integer vector. |
| 958 | */ |
| 959 | ASTCENC_SIMD_INLINE vfloat4 int_to_float(vint4 a) |
| 960 | { |
| 961 | return vfloat4(_mm_cvtepi32_ps(a.m)); |
| 962 | } |
| 963 | |
| 964 | /** |
| 965 | * @brief Return a float16 value for a float vector, using round-to-nearest. |