Lines Matching refs:pivot
104 …tumPivot(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE);
243 …thoPivot(MTX44* pOut, f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE);
278 …ctivePivotDeg(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE );
293 …ectivePivotRad(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE);
316 NN_FORCE_INLINE MTX44* MTX44Pivot( MTX44* pOut, PivotDirection pivot );
716 …self_type& SetupFrustum(f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot = PIVOT_NON…
718 return *MTX44FrustumPivot(this, l, r, b, t, n, f, pivot);
732 … self_type& SetupOrtho(f32 l, f32 r, f32 b, f32 t, f32 n, f32 f, PivotDirection pivot = PIVOT_NONE)
734 return *MTX44OrthoPivot(this, l, r, b, t, n, f, pivot);
745 …self_type& SetupPerspective(f32 fovyRad, f32 aspect, f32 n, f32 f, PivotDirection pivot = PIVOT_NO…
747 return *MTX44PerspectivePivotRad(this, fovyRad, aspect, n, f, pivot);
1086 MTX44PerspectivePivotDeg(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, PivotDirection pivot) in MTX44PerspectivePivotDeg() argument
1088 return MTX44PerspectivePivotRad(pOut, NN_MATH_DEG_TO_RAD(fovy), aspect, n, f, pivot); in MTX44PerspectivePivotDeg()
1116 MTX44Pivot( MTX44* pOut, PivotDirection pivot ) in MTX44Pivot() argument
1120 return ARMv6::MTX44PivotC(pOut, pivot); in MTX44Pivot()
1122 return ARMv6::MTX44PivotC_FAST(pOut, pivot); in MTX44Pivot()