nn::math::MTX44MultArray Function

Syntax

NN_MATH_INLINE MTX44 * MTX44MultArray(
     MTX44 * pOut,
     const MTX44 *__restrict p1,
     const MTX44 *__restrict pSrc,
     s32 count
);

Arguments

Name Description
out pOut Pointer to the start of the array that receives the result of the calculation.
in p1 Pointer to the matrix that is taken as the left-hand value.
in pSrc Pointer to the start of the array of matrices that is taken as the right-hand value.
in count Number of elements in the array of matrices taken as the right-hand value.

Return Values

Returns pOut.

Description

Premultiplies an array of matrices by another matrix.


CONFIDENTIAL