Loads unsigned integer data into the x and y components of an XMVECTOR.
XMVECTOR XMLoadUInt2(
const XMUINT2 *pSource
)
pSource
Type: XMUINT2 *
[in]
Address of an XMUINT2 structure containing the data to load.
Type: XMVECTOR
Returns an XMVECTOR loaded with the data from the pSource parameter.
For 16-byte aligned memory, it may be faster to use XMLoadInt2A with a casting operator.
The following pseudocode show the operation of this function.
XMVECTOR vectorOut;
vectorOut.x = (float)pSource->x;
vectorOut.y = (float)pSource->y;
vectorOut.z = 0;
vectorOut.w = 0;
return vectorOut;
Header: Declared in directxmath.h.