Loads signed integer data into an XMVECTOR.
XMVECTOR XMLoadSInt4(
const XMINT4 *pSource
)
pSource
Type: XMINT4 *
[in]
Address of an XMINT4 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 XMLoadInt4A with a casting operator.
The following pseudocode shows the operation of this function.
XMVECTOR vectorOut;
vectorOut.x = (float)pSource->x;
vectorOut.y = (float)pSource->y;
vectorOut.z = (float)pSource->z;
vectorOut.w = (float)pSource->w;
return vectorOut;
Header: Declared in directxmath.h.