Stores an XMVECTOR in an XMFLOAT4A.
void XMStoreFloat4A(
XMFLOAT4A *pDestination,
XMVECTOR V
)
pDestination
Type: XMFLOAT4A *
[out]
Address at which to store the data. This address must be 16-byte aligned.
V
Type: XMVECTOR
[in]
Vector containing the data to store.
The following pseudocode demonstrates the operation of the function.
return (XMFLOAT4A*)XMStoreVector4A(pDestination, V);
Header: Declared in directxmath.h.