XMStoreFloat2A

Stores an XMVECTOR in an XMFLOAT2A.

Syntax

void XMStoreFloat2A(
         XMFLOAT2A *pDestination,
         XMVECTOR V
)  

Parameters

pDestination
Type: XMFLOAT2A *

[out]

Address at which to store the data. The given address must be aligned on a 16-byte boundary.

V
Type: XMVECTOR 

[in]

Vector containing the data to store.

Return value

None.

Remarks

The following pseudocode demonstrates the operation of the function.

return (XMFLOAT2A*)XMStoreVector2A(pDestination, V);  

Requirements

Header: Declared in directxmath.h.