Skip to content

Commit 2983a43

Browse files
authored
Fix parameter annotations in XMMatrixInverseTranspose
1 parent c5d86c3 commit 2983a43

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Inc/DirectXMathMatrix.inl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1005,10 +1005,11 @@ inline XMMATRIX XM_CALLCONV XMMatrixInverse
10051005

10061006
//------------------------------------------------------------------------------
10071007

1008+
_Use_decl_annotations_
10081009
inline XMMATRIX XM_CALLCONV XMMatrixInverseTranspose
10091010
(
1010-
_Out_opt_ XMVECTOR* pDeterminant,
1011-
_In_ FXMMATRIX M
1011+
XMVECTOR* pDeterminant,
1012+
FXMMATRIX M
10121013
) noexcept
10131014
{
10141015
// Computes (M^-1)^T = adj(M) / det(M), used for transforming surface normals.

0 commit comments

Comments
 (0)