Lines Matching refs:MtxFx33
37 SDK_DECL_INLINE void MTX_Identity33(MtxFx33 *pDst);
38 SDK_DECL_INLINE void MTX_Copy33(const MtxFx33 *pSrc, MtxFx33 *pDst);
39 SDK_DECL_INLINE void MTX_Copy33To43(const MtxFx33 *pSrc, MtxFx43 *pDst);
40 SDK_DECL_INLINE void MTX_Copy33To44(const MtxFx33 *pSrc, MtxFx44 *pDst);
41 SDK_DECL_INLINE void MTX_Transpose33(const MtxFx33 *pSrc, MtxFx33 *pDst);
42 SDK_DECL_INLINE void MTX_Scale33(MtxFx33 *pDst, fx32 x, fx32 y, fx32 z);
43 void MTX_ScaleApply33(const MtxFx33 *pSrc, MtxFx33 *pDst, fx32 x, fx32 y, fx32 z);
44 SDK_DECL_INLINE void MTX_RotX33(MtxFx33 *pDst, fx32 sinVal, fx32 cosVal);
45 SDK_DECL_INLINE void MTX_RotY33(MtxFx33 *pDst, fx32 sinVal, fx32 cosVal);
46 SDK_DECL_INLINE void MTX_RotZ33(MtxFx33 *pDst, fx32 sinVal, fx32 cosVal);
47 void MTX_RotAxis33(MtxFx33 *pDst, const VecFx32 *vec, fx32 sinVal, fx32 cosVal);
48 int MTX_Inverse33(const MtxFx33 *pSrc, MtxFx33 *pDst);
49 void MTX_Concat33(const MtxFx33 *a, const MtxFx33 *b, MtxFx33 *ab);
50 void MTX_MultVec33(const VecFx32 *vec, const MtxFx33 *m, VecFx32 *dst);
52 void MTX_Identity33_(register MtxFx33 *pDst);
53 void MTX_Copy33To43_(const register MtxFx33 *pSrc, register MtxFx43 *pDst);
54 void MTX_Copy33To44_(const register MtxFx33 *pSrc, register MtxFx44 *pDst);
55 void MTX_Transpose33_(const register MtxFx33 *pSrc, register MtxFx33 *pDst);
56 void MTX_Scale33_(register MtxFx33 *pDst, register fx32 x, register fx32 y, register fx32 z);
57 void MTX_RotX33_(register MtxFx33 *pDst, register fx32 sinVal, register fx32 cosVal);
58 void MTX_RotY33_(register MtxFx33 *pDst, register fx32 sinVal, register fx32 cosVal);
59 void MTX_RotZ33_(register MtxFx33 *pDst, register fx32 sinVal, register fx32 cosVal);
74 SDK_INLINE void MTX_Identity33(MtxFx33 *pDst) in MTX_Identity33()
90 SDK_INLINE void MTX_Copy33(const MtxFx33 *pSrc, MtxFx33 *pDst) in MTX_Copy33()
107 SDK_INLINE void MTX_Copy33To43(const MtxFx33 *pSrc, MtxFx43 *pDst) in MTX_Copy33To43()
125 SDK_INLINE void MTX_Copy33To44(const MtxFx33 *pSrc, MtxFx44 *pDst) in MTX_Copy33To44()
143 SDK_INLINE void MTX_Transpose33(const MtxFx33 *pSrc, MtxFx33 *pDst) in MTX_Transpose33()
162 SDK_INLINE void MTX_Scale33(MtxFx33 *pDst, fx32 x, fx32 y, fx32 z) in MTX_Scale33()
179 SDK_INLINE void MTX_RotX33(MtxFx33 *pDst, fx32 sinVal, fx32 cosVal) in MTX_RotX33()
196 SDK_INLINE void MTX_RotY33(MtxFx33 *pDst, fx32 sinVal, fx32 cosVal) in MTX_RotY33()
213 SDK_INLINE void MTX_RotZ33(MtxFx33 *pDst, fx32 sinVal, fx32 cosVal) in MTX_RotZ33()