Lines Matching refs:src
64 static inline void MAT44Copy ( const Mat44 *src, Mat44 *dst ) in MAT44Copy() argument
65 { MTX44Copy ( (Mtx44Ptr)(src->mtx), (Mtx44Ptr)(dst->mtx) ); } in MAT44Copy()
104 static inline void MAT44Transpose ( const Mat44 *src, Mat44 *xPose ) in MAT44Transpose() argument
105 { MTX44Transpose ( (Mtx44Ptr)(src->mtx), (Mtx44Ptr)(xPose->mtx) ); } in MAT44Transpose()
123 static inline u32 MAT44Inverse ( const Mat44 *src, Mat44 *inv ) in MAT44Inverse() argument
124 { return MTX44Inverse ( (Mtx44Ptr)(src->mtx), (Mtx44Ptr)(inv->mtx) ); } in MAT44Inverse()
165 static inline void MAT44TransApply ( const Mat44 *src, Mat44 *dst, f32 xT, f32 yT, f32 zT ) in MAT44TransApply() argument
166 { MTX44TransApply ( (Mtx44Ptr)(src->mtx), (Mtx44Ptr)(dst->mtx), xT, yT, zT ); } in MAT44TransApply()
203 static inline void MAT44ScaleApply ( const Mat44 *src, Mat44 *dst, f32 xS, f32 yS, f32 zS ) in MAT44ScaleApply() argument
204 { MTX44ScaleApply ( (Mtx44Ptr)(src->mtx), (Mtx44Ptr)(dst->mtx), xS, yS, zS ); } in MAT44ScaleApply()
283 static inline void MAT44MultVec ( const Mat44 *m, const Vec *src, Vec *dst ) in MAT44MultVec() argument
284 { MTX44MultVec ( (Mtx44Ptr)(m->mtx), src, dst ); } in MAT44MultVec()
328 static inline void MAT44MultVecSR ( const Mat44 *m, const Vec *src, Vec *dst ) in MAT44MultVecSR() argument
329 { MTX44MultVecSR ( (Mtx44Ptr)(m->mtx), src, dst ); } in MAT44MultVecSR()
375 static inline void MAT34To44( const Mat34 *src, Mat44 *dst ) in MAT34To44() argument
376 { MTX34To44( (MtxPtr)(src->mtx), (Mtx44Ptr)(dst->mtx) ); } in MAT34To44()