| /TwlSDK-5.1.0/include/nitro/fx/ |
| D | fx_mtx43.h | 36 SDK_DECL_INLINE void MTX_Identity43(MtxFx43 *pDst); 37 SDK_DECL_INLINE void MTX_Copy43(const MtxFx43 *pSrc, MtxFx43 *pDst); 38 SDK_DECL_INLINE void MTX_Copy43To33(const MtxFx43 *pSrc, MtxFx33 *pDst); 39 SDK_DECL_INLINE void MTX_Copy43To44(const MtxFx43 *pSrc, MtxFx44 *pDst); 40 SDK_DECL_INLINE void MTX_Transpose43(const MtxFx43 *pSrc, MtxFx43 *pDst); 41 void MTX_TransApply43(const MtxFx43 *pSrc, MtxFx43 *pDst, fx32 x, fx32 y, fx32 z); 42 SDK_DECL_INLINE void MTX_Scale43(MtxFx43 *pDst, fx32 x, fx32 y, fx32 z); 43 void MTX_ScaleApply43(const MtxFx43 *pSrc, MtxFx43 *pDst, fx32 x, fx32 y, fx32 z); 44 SDK_DECL_INLINE void MTX_RotX43(MtxFx43 *pDst, fx32 sinVal, fx32 cosVal); 45 SDK_DECL_INLINE void MTX_RotY43(MtxFx43 *pDst, fx32 sinVal, fx32 cosVal); [all …]
|
| D | fx_mtx33.h | 39 SDK_DECL_INLINE void MTX_Copy33To43(const MtxFx33 *pSrc, MtxFx43 *pDst); 53 void MTX_Copy33To43_(const register MtxFx33 *pSrc, register MtxFx43 *pDst); 107 SDK_INLINE void MTX_Copy33To43(const MtxFx33 *pSrc, MtxFx43 *pDst) in MTX_Copy33To43()
|
| D | fx_mtx44.h | 39 SDK_DECL_INLINE void MTX_Copy44To43(const MtxFx44 *pSrc, MtxFx43 *pDst); 55 void MTX_Copy44To43_(register const MtxFx44 *pSrc, register MtxFx43 *pDst); 131 SDK_INLINE void MTX_Copy44To43(const MtxFx44 *pSrc, MtxFx43 *pDst) in MTX_Copy44To43()
|
| D | fx.h | 196 MtxFx43; typedef 210 MtxFx43; typedef
|
| /TwlSDK-5.1.0/build/libraries/fx/common/src/ |
| D | fx_mtx43.c | 26 asm void MTX_Identity43_(register MtxFx43* pDst) in MTX_Identity43_() 41 asm void MTX_Copy43To44_(register const MtxFx43* pSrc, register MtxFx44* pDst) in MTX_Copy43To44_() 61 asm void MTX_Transpose43_(register const MtxFx43* pSrc, register MtxFx43* pDst) in MTX_Transpose43_() 92 void MTX_TransApply43(const MtxFx43 *pSrc, MtxFx43 *pDst, fx32 x, fx32 y, fx32 z) in MTX_TransApply43() 116 asm void MTX_Scale43_(register MtxFx43* pDst, register fx32 x, register fx32 y, register fx32 z) in MTX_Scale43_() 148 void MTX_ScaleApply43(const MtxFx43 *pSrc, MtxFx43 *pDst, fx32 x, fx32 y, fx32 z) in MTX_ScaleApply43() 159 asm void MTX_RotX43_(register MtxFx43 * pDst, register fx32 sinVal, register fx32 cosVal) in MTX_RotX43_() 181 asm void MTX_RotY43_(register MtxFx43 * pDst, register fx32 sinVal, register fx32 cosVal) in MTX_RotY43_() 202 asm void MTX_RotZ43_(register MtxFx43 * pDst, register fx32 sinVal, register fx32 cosVal) in MTX_RotZ43_() 235 void MTX_RotAxis43(MtxFx43 *pDst, const VecFx32 *vec, fx32 sinVal, fx32 cosVal) in MTX_RotAxis43() [all …]
|
| D | fx.c | 62 SDK_ASSERT(48 == sizeof(MtxFx43)); in FX_Init()
|
| D | fx_mtx33.c | 41 asm void MTX_Copy33To43_(const register MtxFx33* pSrc, register MtxFx43* pDst) in MTX_Copy33To43_()
|
| D | fx_mtx44.c | 63 asm void MTX_Copy44To43_(register const MtxFx44* pSrc, register MtxFx43* pDst) in MTX_Copy44To43_()
|
| /TwlSDK-5.1.0/build/demos/fx/test/src/ |
| D | main.c | 265 static BOOL equal_mtx43(const MtxFx43 *a, const MtxFx43 *b) in equal_mtx43() 316 MtxFx43 m43; in test_FX_MTX33() 324 const MtxFx43 ans43 = { in test_FX_MTX33() 483 MtxFx43 m; in test_FX_MTX43() 485 MtxFx43 m43; in test_FX_MTX43() 492 const MtxFx43 ans43 = { in test_FX_MTX43() 517 MtxFx43 m = { in test_FX_MTX43() 523 const MtxFx43 ans = { in test_FX_MTX43() 533 MtxFx43 m; in test_FX_MTX43() 534 const MtxFx43 ans = { in test_FX_MTX43() [all …]
|
| D | fx_append_mtx.c | 99 static void MTX_Concat43D_(const MtxFx43 *afx, const MtxFx43 *bfx, MtxD43 * ab); 107 static BOOL IsNearlyIdentityMtx_(const MtxFx43 *mtxIn); 108 static BOOL CheckInvMtxValid_(const MtxFx43 *mtx); 163 static void MTX_Concat43D_(const MtxFx43 *afx, const MtxFx43 *bfx, MtxD43 * ab) in MTX_Concat43D_() 408 static BOOL IsNearlyIdentityMtx_(const MtxFx43 *mtxIn) in IsNearlyIdentityMtx_() 425 static BOOL CheckInvMtxValid_(const MtxFx43 *mtx) in CheckInvMtxValid_() 427 MtxFx43 mtxInv, result; in CheckInvMtxValid_() 448 const MtxFx43 src43 = { in MTX_concat_43_test_() 456 MtxFx43 resFx; in MTX_concat_43_test_() 516 MtxFx43 rotYFx, rotZFx, mtxFx, mtxFx2; in MTX_inv_43_test_()
|
| D | fx_test_common.h | 46 extern void print_mtx43(const MtxFx43 *m);
|
| D | fx_test_common.c | 73 void print_mtx43(const MtxFx43 *m) in print_mtx43()
|
| /TwlSDK-5.1.0/include/nitro/gx/ |
| D | g3_util.h | 45 MtxFx43 *mtx); 223 G3_LookAt(const VecFx32 *camPos, const VecFx32 *camUp, const VecFx32 *target, MtxFx43 *mtx) in G3_LookAt()
|
| D | g3c.h | 62 void G3CS_LoadMtx43(GXDLInfo *info, const MtxFx43 *m); 64 void G3CS_MultMtx43(GXDLInfo *info, const MtxFx43 *m); 118 void G3C_LoadMtx43(GXDLInfo *info, const MtxFx43 *m); 120 void G3C_MultMtx43(GXDLInfo *info, const MtxFx43 *m);
|
| D | g3b.h | 69 void G3BS_LoadMtx43(GXDLInfo *info, const MtxFx43 *m); 71 void G3BS_MultMtx43(GXDLInfo *info, const MtxFx43 *m); 126 void G3B_LoadMtx43(GXDLInfo *info, const MtxFx43 *m); 128 void G3B_MultMtx43(GXDLInfo *info, const MtxFx43 *m);
|
| D | g3imm.h | 54 void G3_LoadMtx43(const MtxFx43 *m); 56 void G3_MultMtx43(const MtxFx43 *m);
|
| /TwlSDK-5.1.0/build/libraries/gx/ARM9/src/ |
| D | g3imm.c | 76 void G3_LoadMtx43(const MtxFx43 *m) in G3_LoadMtx43() 150 void G3_MultMtx43(const MtxFx43 *m) in G3_MultMtx43()
|
| D | g3b.c | 117 void G3BS_LoadMtx43(GXDLInfo *info, const MtxFx43 *m) in G3BS_LoadMtx43() 203 void G3BS_MultMtx43(GXDLInfo *info, const MtxFx43 *m) in G3BS_MultMtx43() 582 void G3B_LoadMtx43(GXDLInfo *info, const MtxFx43 *m) in G3B_LoadMtx43() 620 void G3B_MultMtx43(GXDLInfo *info, const MtxFx43 *m) in G3B_MultMtx43()
|
| D | g3c.c | 229 void G3CS_LoadMtx43(GXDLInfo *info, const MtxFx43 *m) in G3CS_LoadMtx43() 319 void G3CS_MultMtx43(GXDLInfo *info, const MtxFx43 *m) in G3CS_MultMtx43() 745 void G3C_LoadMtx43(GXDLInfo *info, const MtxFx43 *m) in G3C_LoadMtx43() 783 void G3C_MultMtx43(GXDLInfo *info, const MtxFx43 *m) in G3C_MultMtx43()
|
| D | g3_util.c | 155 MtxFx43 *mtx) in G3i_LookAt_() 157 MtxFx43 tmp[1]; in G3i_LookAt_()
|
| /TwlSDK-5.1.0/build/demos/gx/UnitTours/3D_Pol_TexSRT/src/ |
| D | main.c | 96 MtxFx43 camera; in TwlMain()
|
| /TwlSDK-5.1.0/build/demos/gx/UnitTours/3D_Pol_Env_Mapping/src/ |
| D | main.c | 139 MtxFx43 camera; in TwlMain()
|
| /TwlSDK-5.1.0/build/demos/gx/UnitTours/3D_Pol_Vertex_Source/src/ |
| D | main.c | 204 MtxFx43 camera; in TwlMain()
|