Stores an XMVECTOR in an XMUSHORT2.
void XMStoreUShort2(
XMUSHORT2 *pDestination,
XMVECTOR V
)
pDestination
Type: XMUSHORT2 *
[out]
Address at which to store the data.
V
Type: XMVECTOR
[in]
Vector containing the data to store.
The following pseudocode demonstrates the operation of the function.
XMVECTOR N;
static const XMVECTOR Max = {65535.0f, 65535.0f, 65535.0f, 65535.0f};
assert(pDestination);
N = XMVectorClamp(V, XMVectorZero(), Max);
N = XMVectorRound(N);
pDestination->x = (int16_t)N.v[0];
pDestination->y = (int16_t)N.v[1];
Header: Declared in directxpackedvector.h.