* @brief Factory that returns a 2 component vfloat4. */
| 319 | * @brief Factory that returns a 2 component vfloat4. |
| 320 | */ |
| 321 | static ASTCENC_SIMD_INLINE vfloat4 vfloat2(float a, float b) |
| 322 | { |
| 323 | return vfloat4(a, b, 0.0f, 0.0f); |
| 324 | } |
| 325 | |
| 326 | /** |
| 327 | * @brief Normalize a non-zero length vector to unit length. |
no test coverage detected