XMStoreFloat4A

Stores an XMVECTOR in an XMFLOAT4A.

Syntax

void XMStoreFloat4A(
         XMFLOAT4A *pDestination,
         XMVECTOR V
)  

Parameters

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.

Return value

None.

Remarks

The following pseudocode demonstrates the operation of the function.

return (XMFLOAT4A*)XMStoreVector4A(pDestination, V);  

Requirements

Header: Declared in directxmath.h.