Lines Matching refs:Mtx

54 void C_MTXIdentity ( Mtx m )  in C_MTXIdentity()
69 void PSMTXIdentity( Mtx m ) in PSMTXIdentity()
107 void C_MTXCopy ( MTX_CONST Mtx src, Mtx dst ) in C_MTXCopy()
128 void PSMTXCopy(MTX_CONST Mtx src, Mtx dst ) in PSMTXCopy()
191 void C_MTXConcat ( MTX_CONST Mtx a, MTX_CONST Mtx b, Mtx ab ) in C_MTXConcat()
193 Mtx mTmp; in C_MTXConcat()
230 C_MTXCopy( *((MTX_CONST Mtx *)&mTmp), ab ); in C_MTXConcat()
240 void PSMTXConcat ( MTX_CONST Mtx a, MTX_CONST Mtx b, Mtx ab ) in PSMTXConcat()
376 void C_MTXConcatArray ( MTX_CONST Mtx a, MTX_CONST Mtx* srcBase, Mtx* dstBase, u32 count ) in C_MTXConcatArray()
401 MTX_CONST Mtx a, in PSMTXConcatArray()
402 MTX_CONST Mtx* srcBase, in PSMTXConcatArray()
403 Mtx* dstBase, in PSMTXConcatArray()
441 void C_MTXTranspose ( MTX_CONST Mtx src, Mtx xPose ) in C_MTXTranspose()
443 Mtx mTmp; in C_MTXTranspose()
465 C_MTXCopy( *((MTX_CONST Mtx *)&mTmp), xPose ); in C_MTXTranspose()
475 void PSMTXTranspose ( MTX_CONST Mtx src, Mtx xPose ) in PSMTXTranspose()
559 u32 C_MTXInverse ( MTX_CONST Mtx src, Mtx inv ) in C_MTXInverse()
561 Mtx mTmp; in C_MTXInverse()
614 C_MTXCopy( *((MTX_CONST Mtx *)&mTmp),inv ); in C_MTXInverse()
628 u32 PSMTXInverse ( MTX_CONST Mtx src, Mtx inv ) in PSMTXInverse()
865 u32 C_MTXInvXpose ( MTX_CONST Mtx src, Mtx invX ) in C_MTXInvXpose()
867 Mtx mTmp; in C_MTXInvXpose()
920 C_MTXCopy( *((MTX_CONST Mtx *)&mTmp),invX ); in C_MTXInvXpose()
934 u32 PSMTXInvXpose ( MTX_CONST Mtx src, Mtx invX ) in PSMTXInvXpose()
1170 void C_MTXRotRad ( Mtx m, char axis, f32 rad ) in C_MTXRotRad()
1191 void PSMTXRotRad ( Mtx m, char axis, f32 rad ) in PSMTXRotRad()
1227 void C_MTXRotTrig ( Mtx m, char axis, f32 sinA, f32 cosA ) in C_MTXRotTrig()
1268 void PSMTXRotTrig ( Mtx m, char axis, f32 sinA, f32 cosA ) in PSMTXRotTrig()
1407 void C_MTXRotAxisRad( Mtx m, const Vec *axis, f32 rad ) in C_MTXRotAxisRad()
1455 Mtx m, in _PSMTXRotAxisRadInternal()
1602 Mtx m, in PSMTXRotAxisRad()
1635 void C_MTXTrans ( Mtx m, f32 xT, f32 yT, f32 zT ) in C_MTXTrans()
1650 void PSMTXTrans( Mtx m, f32 xT, f32 yT, f32 zT ) in PSMTXTrans()
1687 void C_MTXTransApply ( MTX_CONST Mtx src, Mtx dst, f32 xT, f32 yT, f32 zT ) in C_MTXTransApply()
1710 void PSMTXTransApply( Mtx src, Mtx dst, f32 xT, f32 yT, f32 zT ) in PSMTXTransApply()
1788 void C_MTXScale ( Mtx m, f32 xS, f32 yS, f32 zS ) in C_MTXScale()
1804 void PSMTXScale( Mtx m, f32 xS, f32 yS, f32 zS ) in PSMTXScale()
1842 void C_MTXScaleApply ( MTX_CONST Mtx src, Mtx dst, f32 xS, f32 yS, f32 zS ) in C_MTXScaleApply()
1864 void PSMTXScaleApply ( MTX_CONST Mtx src, Mtx dst, f32 xS, f32 yS, f32 zS ) in PSMTXScaleApply()
1959 void C_MTXReflect ( Mtx m, const Vec *p, const Vec *n ) in C_MTXReflect()
1988 void PSMTXReflect ( Mtx m, const Vec *p, const Vec *n ) in PSMTXReflect()
2122 void C_MTXLookAt ( Mtx m, const Point3d *camPos, const Vec *camUp, const Point3d *target ) in C_MTXLookAt()
2207 void C_MTXLightFrustum ( Mtx m, float t, float b, float lf, float r, float n, in C_MTXLightFrustum()
2266 void C_MTXLightPerspective ( Mtx m, f32 fovY, f32 aspect, float scaleS, in C_MTXLightPerspective()
2332 void C_MTXLightOrtho ( Mtx m, f32 t, f32 b, f32 lf, f32 r, float scaleS, in C_MTXLightOrtho()
2378 void C_MTXReorder(MTX_CONST Mtx src, ROMtx dst) in C_MTXReorder()
2390 void PSMTXReorder(MTX_CONST Mtx src, register ROMtx dest) in PSMTXReorder()
2453 extern void _ASM_MTXRotAxisRadInternal(Mtx m, const Vec *axis, f32 sT, f32 cT);
2455 void ASM_MTXRotAxisRad(Mtx m, in ASM_MTXRotAxisRad()
2466 void ASM_MTXRotRad ( Mtx m, char axis, f32 rad ) in ASM_MTXRotRad()