* @brief Overload: mask intersect (and). */
| 404 | * @brief Overload: mask intersect (and). |
| 405 | */ |
| 406 | ASTCENC_SIMD_INLINE vmask4 operator&(vmask4 a, vmask4 b) |
| 407 | { |
| 408 | return vmask4(_mm_and_ps(a.m, b.m)); |
| 409 | } |
| 410 | |
| 411 | /** |
| 412 | * @brief Overload: mask difference (xor). |