Loads an XMFLOAT3X3 into an XMMATRIX.
XMMATRIX XMLoadFloat3x3(
const XMFLOAT3X3 *pSource
)
pSource
Type: XMFLOAT3X3 *
[in]
Address of the XMFLOAT3X3 structure to load. This parameter must point to cached memory.
Type: XMMATRIX
Returns an XMMATRIX loaded with the data from the pSource parameter.
This function performs a partial load of the returned XMMATRIX. See Getting Started with DirectX Math for more information.
XMFLOAT3X3 is a row-major form of the matrix. This function could be used to read column-major data, but would then need to be transposed with XMMatrixTranpose before use in other XMMATRIX functions.
The members of the XMFLOAT3X3 structures (_11, _12, _13, and so on) are loaded into the corresponding members of the XMMATRIX. The remaining members of the returned XMMATRIX are 0.0f, except for _44, which is 1.0f.
Header: Declared in directxmath.h.