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

Function operator/

Source/astcenc_vecmathlib_none_4.h:757–763  ·  view source on GitHub ↗

* @brief Overload: vector by vector division. */

Source from the content-addressed store, hash-verified

755 * @brief Overload: vector by vector division.
756 */
757ASTCENC_SIMD_INLINE vfloat4 operator/(vfloat4 a, vfloat4 b)
758{
759 return vfloat4(a.m[0] / b.m[0],
760 a.m[1] / b.m[1],
761 a.m[2] / b.m[2],
762 a.m[3] / b.m[3]);
763}
764
765/**
766 * @brief Overload: vector by vector equality.

Callers

nothing calls this directly

Calls 1

vfloat4Class · 0.70

Tested by

no test coverage detected