Stores an XMVECTOR in an XMUBYTE4.
void XMStoreUByte4(
XMUBYTE4 *pDestination,
XMVECTOR V
)
pDestination
Type: XMUBYTE4 *
[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 = {255.0f, 255.0f, 255.0f, 255.0f};
assert(pDestination);
N = XMVectorClamp(V, XMVectorZero(), Max);
N = XMVectorRound(N);
pDestination->x = (uint8_t)N.v[0];
pDestination->y = (uint8_t)N.v[1];
pDestination->z = (uint8_t)N.v[2];
pDestination->w = (uint8_t)N.v[3];
Header: Declared in directxpackedvector.h.