* @brief Factory that returns a unit length 3 component vfloat4. */
| 317 | * @brief Factory that returns a unit length 3 component vfloat4. |
| 318 | */ |
| 319 | static ASTCENC_SIMD_INLINE vfloat4 unit3() |
| 320 | { |
| 321 | float val = 0.577350258827209473f; |
| 322 | return vfloat4(val, val, val, 0.0f); |
| 323 | } |
| 324 | |
| 325 | /** |
| 326 | * @brief Factory that returns a unit length 2 component vfloat4. |
no test coverage detected