XMStoreFloat3x4 function (directxmath.h)

Stores an XMMATRIX in an XMFLOAT3X4.

Syntax

void XM_CALLCONV XMStoreFloat3x4(
  [out] XMFLOAT3X4 *pDestination,
  [in]  FXMMATRIX  M
) noexcept;

Parameters

[out] pDestination

Type: XMFLOAT3X4 *

Pointer to the XMFLOAT3X4 structure in which to store the data.

[in] M

Type: XMMATRIX

Matrix containing the data to store.

Return value

None

Remarks

XMFLOAT3X4 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

See also

DirectXMath Library vector store functions