Stores an XMVECTOR in an XMUBYTEN2.
void XMStoreUByteN2(
XMUBYTEN2 *pDestination,
XMVECTOR V
)
pDestination
Type: XMUBYTEN2 *
[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 Scale = {255.0f, 255.0f, 255.0f, 255.0f};
assert(pDestination);
N = XMVectorSaturate(V);
N = XMVectorMultiply(N, Scale);
N = XMVectorRound(N);
pDestination->x = (uint8_t)N.v[0];
pDestination->y = (uint8_t)N.v[1];
Header: Declared in directxpackedvector.h.