XMStoreSInt2

Stores signed integer data from an XMVECTOR in an XMINT2 structure.

Syntax

void XMStoreSInt2(
         XMINT2 *pDestination,
         XMVECTOR V
)  

Parameters

pDestination
Type: XMINT2 *

[out]

Address of an XMINT2 structure in which to store the data.

V
Type: XMVECTOR 

[in]

Vector containing the data to store.

Return value

None.

Remarks

For 16-byte aligned memory, it may be faster to use XMStoreInt2A with a casting operator.

The following pseudocode shows the operation of this function.

XMVECTOR N;	

assert(pDestination);

N = XMVectorClamp(V, MinInt, MaxInt );
N = XMVectorRound(N);

pDestination->x = (int32_t)N.v[0];
pDestination->y = (int32_t)N.v[1];  

Requirements

Header: Declared in directxmath.h.