XMVectorEqualIntR method

Performs a per-component test for equality of two vectors, treating each component as an unsigned integer. In addition, this function sets a comparison value that can be examined using functions such as XMComparisonAllTrue.

Syntax


XMVECTOR XMVectorEqualIntR(
  [out] uint32_t *pCR,
  [in]  XMVECTOR V1,
  [in]  XMVECTOR V2
);

Parameters

pCR [out]

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.

V1 [in]

First vector to compare.

V2 [in]

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

Namespace

Use DirectX.

Header

DirectXMath.h

See also

Vector Comparison Functions
XMVectorEqual
XMVectorEqualInt

 

 

Show: