MCPcopy Create free account
hub / github.com/ARM-software/astc-encoder / operator<=

Function operator<=

Source/astcenc_vecmathlib_none_4.h:816–822  ·  view source on GitHub ↗

* @brief Overload: vector by vector less than or equal. */

Source from the content-addressed store, hash-verified

814 * @brief Overload: vector by vector less than or equal.
815 */
816ASTCENC_SIMD_INLINE vmask4 operator<=(vfloat4 a, vfloat4 b)
817{
818 return vmask4(a.m[0] <= b.m[0],
819 a.m[1] <= b.m[1],
820 a.m[2] <= b.m[2],
821 a.m[3] <= b.m[3]);
822}
823
824/**
825 * @brief Overload: vector by vector greater than or equal.

Callers

nothing calls this directly

Calls 1

vmask4Class · 0.70

Tested by

no test coverage detected