XMStoreFloat3x4A function (directxmath.h)
Stores an XMMATRIX in an XMFLOAT3X4A.
Syntax
void XM_CALLCONV XMStoreFloat3x4A(
[out] XMFLOAT3X4A *pDestination,
[in] FXMMATRIX M
) noexcept;
Parameters
[out] pDestination
Type: XMFLOAT3X4A *
Pointer to the XMFLOAT3X4A structure in which to store the data.
[in] M
Type: XMMATRIX
Matrix containing the data to store.
Return value
None
Remarks
XMFLOAT3X4A is a row-major form of the matrix.
To write out column-major data requires that the XMMATRIX be transposed via XMMatrixTranspose before calling the store function.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 10 Build 20348 |
Minimum supported server | Windows 10 Build 20348 |
Target Platform | Windows |
Header | directxmath.h |