XMVectorGreaterOrEqualR function (directxmath.h)

Performs a per-component test for greater-than-or-equal between two vectors and sets a comparison value that can be examined using functions such as XMComparisonAllTrue.

Syntax

XMVECTOR XM_CALLCONV XMVectorGreaterOrEqualR(
  [out] uint32_t  *pCR,
  [in]  FXMVECTOR V1,
  [in]  FXMVECTOR V2
) noexcept;

Parameters

[out] pCR

Pointer to a uint32_t comparison value that can be examined using functions such as XMComparisonAllTrue. The XMComparisonXXXX functions may be used to further test the number of components that passed the comparison.

[in] V1

First vector to compare.

[in] V2

Second vector to compare.

Return value

Returns a vector containing the results of each component test.

Remarks

Platform Requirements

Microsoft Visual Studio 2010 or Microsoft Visual Studio 2012 with the Windows SDK for Windows 8. Supported for Win32 desktop apps, Windows Store apps, and Windows Phone 8 apps.

Requirements

Requirement Value
Target Platform Windows
Header directxmath.h (include DirectXMath.h)

See also

Vector Comparison Functions

XMVectorGreaterOrEqual