Skip to content

Latest commit

 

History

History
104 lines (64 loc) · 2.24 KB

d3d10-d3dxmatrixmultiplytranspose.md

File metadata and controls

104 lines (64 loc) · 2.24 KB
description ms.assetid title ms.topic ms.date topic_type api_name api_type api_location
D3DXMatrixMultiplyTranspose function (D3DX10Math.h) - Calculates the transposed product of two matrices.
3db4138c-407c-47b5-b8b9-04af8771e98e
D3DXMatrixMultiplyTranspose function (D3DX10Math.h)
reference
05/31/2018
APIRef
kbSyntax
D3DXMatrixMultiplyTranspose
LibDef
D3DX10.lib
D3DX10.dll

D3DXMatrixMultiplyTranspose function (D3DX10Math.h)

Note

The D3DX10 utility library is deprecated. We recommend that you use DirectXMath instead.

Calculates the transposed product of two matrices.

Syntax

D3DXMATRIX* D3DXMatrixMultiplyTranspose(
  _Inout_       D3DXMATRIX *pOut,
  _In_    const D3DXMATRIX *pM1,
  _In_    const D3DXMATRIX *pM2
);

Parameters

pOut [in, out]

Type: D3DXMATRIX*

Pointer to the D3DXMATRIX structure that is the result of the operation.

pM1 [in]

Type: const D3DXMATRIX*

Pointer to a source D3DXMATRIX structure (left hand side).

pM2 [in]

Type: const D3DXMATRIX*

Pointer to a source D3DXMATRIX structure (right hand side).

Return value

Type: D3DXMATRIX*

Pointer to a D3DXMATRIX structure that is the product of two matrices.

Remarks

The result is the transposed of the product of two transformation matrices, Out = T(M1*M2).

The return value for this function is the same value returned in the pOut parameter. In this way, the D3DXMatrixMultiplyTranspose function can be used as a parameter for another function.

This function is useful to set matrices as constants for vertex and pixel shaders.

Requirements

Requirement Value
Header
D3DX10Math.h
Library
D3DX10.lib

See also

Math Functions