* @brief Factory that returns a 2 component vfloat4. */
| 343 | * @brief Factory that returns a 2 component vfloat4. |
| 344 | */ |
| 345 | static ASTCENC_SIMD_INLINE vfloat4 vfloat2(float a, float b) |
| 346 | { |
| 347 | return vfloat4(a, b, 0.0f, 0.0f); |
| 348 | } |
| 349 | |
| 350 | /** |
| 351 | * @brief Normalize a non-zero length vector to unit length. |
no test coverage detected