Lines Matching refs:aspect
68 NN_MATH_INLINE MTX44* MTX44PerspectiveRad(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f);
86 NN_MATH_INLINE MTX44* MTX44PerspectivePivotRad(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, Piv…
99 NN_FORCE_INLINE MTX44* MTX44PerspectiveRad(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f);
127 MTX44PerspectiveDeg(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f) in MTX44PerspectiveDeg() argument
129 return MTX44PerspectiveRad(pOut, NN_MATH_DEG_TO_RAD(fovy), aspect, n, f); in MTX44PerspectiveDeg()
136 MTX44Perspective(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f) in MTX44Perspective() argument
138 return MTX44PerspectiveDeg(pOut, fovy, aspect, n, f); in MTX44Perspective()
153 MTX44PerspectivePivotDeg(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, PivotDirection pivot = PI…
155 return MTX44PerspectivePivotRad(pOut, NN_MATH_DEG_TO_RAD(fovy), aspect, n, f, pivot);
472 …self_type& SetupPerspective(f32 fovyRad, f32 aspect, f32 n, f32 f, PivotDirection pivot = PIVOT_NO…
474 return *MTX44PerspectivePivotRad(this, fovyRad, aspect, n, f, pivot);
813 MTX44PerspectiveRad(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f) in MTX44PerspectiveRad() argument
817 return ARMv6::MTX44PerspectiveRadC(pOut, fovy, aspect, n, f); in MTX44PerspectiveRad()
819 return ARMv6::MTX44PerspectiveRadC_FAST(pOut, fovy, aspect, n, f); in MTX44PerspectiveRad()
822 return ARMv6::MTX44PerspectiveRadC_FAST(pOut, fovy, aspect, n, f); in MTX44PerspectiveRad()