* @brief Factory that returns a unit length 2 component vfloat4. */
| 326 | * @brief Factory that returns a unit length 2 component vfloat4. |
| 327 | */ |
| 328 | static ASTCENC_SIMD_INLINE vfloat4 unit2() |
| 329 | { |
| 330 | float val = 0.707106769084930420f; |
| 331 | return vfloat4(val, val, 0.0f, 0.0f); |
| 332 | } |
| 333 | |
| 334 | /** |
| 335 | * @brief Factory that returns a 3 component vfloat4. |
no test coverage detected