Stores an XMVECTOR in an XMFLOAT2A.
void XMStoreFloat2A(
XMFLOAT2A *pDestination,
XMVECTOR V
)
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.
The following pseudocode demonstrates the operation of the function.
return (XMFLOAT2A*)XMStoreVector2A(pDestination, V);
Header: Declared in directxmath.h.