Lines Matching refs:MTX44
37 VEC3TransformC(VEC4* pOut, const MTX44* pM, const VEC3* pV)
58 MTX44
76 NN_MATH_INLINE MTX44*
77 MTX44CopyC(MTX44* pOut, const MTX44* p)
96 NN_MATH_INLINE MTX44*
97 MTX44AddC(MTX44* pOut, const MTX44* p1, const MTX44* p2)
133 NN_MATH_INLINE MTX44*
134 MTX44MultC(MTX44* pOut, const MTX44* p, f32 f)
168 NN_MATH_INLINE MTX44*
169 MTX44TransposeC(MTX44* pOut, const MTX44 *pSrc)
171 MTX44 tmp;
172 const MTX44 *pMtx;
222 NN_MATH_INLINE MTX44*
223 MTX44PerspectiveRadC(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f)
259 NN_MATH_INLINE MTX44*
260 MTX44PerspectiveRadC_FAST(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f)
321 NN_MATH_INLINE MTX44*
322 MTX44FrustumC(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f)
356 NN_MATH_INLINE MTX44*
357 MTX44FrustumC_FAST(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f)
420 NN_MATH_INLINE MTX44*
421 MTX44OrthoC(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f)
455 NN_MATH_INLINE MTX44*
456 MTX44OrthoC_FAST(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f)
510 inline MTX44*
511 MTX44PivotC( MTX44* pOut, PivotDirection pivot )
576 inline MTX44*
577 MTX44PivotC_FAST( MTX44* pOut, PivotDirection pivot )
686 NN_MATH_INLINE MTX44*
687 MTX44MultC(MTX44* pOut, const MTX44* __restrict p1, const MTX44* __restrict p2)
693 MTX44 mTmp;
695 MTX44* __restrict pDst = ( pOut == p1 || pOut == p2 ) ? &mTmp : pOut;
745 MTX44InverseC(MTX44* pOut, const MTX44* p)
747 MTX44 mTmp;
821 MTX44InverseC_FAST_ALGO(MTX44* pOut, const MTX44* p)
964 NN_MATH_INLINE MTX44*
965 MTX44RotAxisRad_C( MTX44* pOut, const VEC3 *pAxis, f32 fRad )
1015 NN_MATH_INLINE MTX44*
1016 MTX44RotAxisRad_C_FAST( MTX44* pOut, const VEC3 *pAxis, f32 fRad )
1096 NN_MATH_INLINE MTX44*
1097 MTX44RotXYZFIdxC(MTX44* pOut, f32 fIdxX, f32 fIdxY, f32 fIdxZ)
1140 NN_MATH_INLINE MTX44*
1141 MTX44RotXYZFIdxC_FAST(MTX44* pOut, f32 fIdxX, f32 fIdxY, f32 fIdxZ)
1299 NN_MATH_INLINE MTX44*
1300 MTX44ScaleC(MTX44* pOut, const VEC3* pS)
1314 NN_MATH_INLINE MTX44*
1315 MTX44ScaleC_FAST(MTX44* pOut, const VEC3* pS)
1346 NN_MATH_INLINE MTX44*
1347 MTX44MultScaleC(MTX44* pOut, const MTX44* pM, const VEC3* pS)
1382 NN_MATH_INLINE MTX44*
1383 MTX44MultScaleC(MTX44* pOut, const VEC3* pS, const MTX44* pM)
1413 NN_MATH_INLINE MTX44*
1414 MTX44TranslateC(MTX44* pOut, const VEC3* pT)
1428 NN_MATH_INLINE MTX44*
1429 MTX44TranslateC_FAST(MTX44* pOut, const VEC3* pT)
1460 NN_MATH_INLINE MTX44*
1461 MTX44MultTranslateC(MTX44* pOut, const VEC3* pT, const MTX44* pM)
1493 NN_MATH_INLINE MTX44*
1494 MTX44MultTranslateC(MTX44* pOut, const MTX44* pM, const VEC3* pT)