Searched refs:MTX43Mult (Results 1 – 1 of 1) sorted by relevance
| /CTR-SDK-0.14.23/CTR_SDK-0_14_23-20110107-en/CTR_SDK/include/nn/math/ |
| D | math_Matrix43.h | 39 NN_MATH_INLINE MTX43* MTX43Mult(MTX43* pOut, const MTX43* p1, const MTX43* p2); 40 NN_MATH_INLINE MTX43* MTX43Mult(MTX43* pOut, const MTX43* p, f32 f); 44 NN_FORCE_INLINE MTX43* MTX43Mult(MTX43* pOut, const MTX43* p1, const MTX43* p2); 45 NN_FORCE_INLINE MTX43* MTX43Mult(MTX43* pOut, const MTX43* p, f32 f); 178 self_type& operator *= (const self_type& rhs) { return *MTX43Mult(this, this, &rhs); } 179 self_type& operator *= (f32 f) { return *MTX43Mult(this, this, f); } 194 self_type operator * (f32 f) const { MTX43 tmp; return *MTX43Mult(&tmp, this, f); } 294 MTX43Mult(MTX43* pOut, const MTX43* p1, const MTX43* p2) in MTX43Mult() function 319 MTX43Mult(MTX43* pOut, const MTX43* p, f32 f) in MTX43Mult() function 342 inline MTX43* MTX43Mult(MTX43* pOut, const MTX43& m1, const MTX43& m2) { return MTX43Mult( pOut, &m… in MTX43Mult() function [all …]
|