XMStoreUByteN2

Stores an XMVECTOR in an XMUBYTEN2.

Syntax

void XMStoreUByteN2(
         XMUBYTEN2 *pDestination,
         XMVECTOR V
)  

Parameters

pDestination
Type: XMUBYTEN2 *

[out]

Address at which to store the data.

V
Type: XMVECTOR 

[in]

Vector containing the data to store.

Return value

None.

Remarks

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];  

Requirements

Header: Declared in directxpackedvector.h.