Home
last modified time | relevance | path

Searched refs:aspect (Results 1 – 6 of 6) sorted by relevance

/CTR-SDK-4.2.8-20130828/include/nn/math/
Dmath_Matrix44.h256 NN_MATH_INLINE MTX44* MTX44PerspectiveDeg(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f);
261 MTX44Perspective(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f) in MTX44Perspective() argument
263 return MTX44PerspectiveDeg(pOut, fovy, aspect, n, f); in MTX44Perspective()
278 NN_MATH_INLINE MTX44* MTX44PerspectivePivotDeg(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, Piv…
293 NN_MATH_INLINE MTX44* MTX44PerspectivePivotRad(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, Piv…
306 NN_FORCE_INLINE MTX44* MTX44PerspectiveRad(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f);
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);
980 MTX44PerspectiveRad(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f) in MTX44PerspectiveRad() argument
984 return ARMv6::MTX44PerspectiveRadC(pOut, fovy, aspect, n, f); in MTX44PerspectiveRad()
[all …]
Dmath_Matrix34.h430 NN_MATH_INLINE MTX34* MTX34ShadowProjectionPerspective(MTX34* pOut, f32 fovy, f32 aspect, f32 n, f3…
491 NN_MATH_INLINE MTX34* MTX34TextureProjectionPerspective(MTX34* pOut, f32 fovy, f32 aspect, f32 scal…
837 …self_type& SetupTextureProjectionFrustum(f32 fovyRad, f32 aspect, f32 scaleS, f32 scaleT, f32 tran… in SetupTextureProjectionFrustum() argument
839 …return *MTX34TextureProjectionPerspective(this, fovyRad, aspect, scaleS, scaleT, translateS, trans… in SetupTextureProjectionFrustum()
/CTR-SDK-4.2.8-20130828/include/nn/math/inline/
Dmath_Matrix34.ipp173 MTX34TextureProjectionPerspective(MTX34* pOut, f32 fovy, f32 aspect, f32 scaleS, f32 scaleT, f32 tr…
176 NN_ASSERT(aspect != 0.0f);
184 mtx[0][0] = (cot / aspect) * scaleS;
263 MTX34ShadowProjectionPerspective(MTX34* pOut, f32 fovy, f32 aspect, f32 n, f32 f)
266 NN_ASSERT(aspect != 0.0f);
275 mtx[0][0] = (cot / aspect) * scale;
Dmath_Matrix44.ipp173 MTX44PerspectivePivotRad(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, PivotDirection pivot)
175 MTX44PerspectiveRad( pOut, fovy, aspect, n, f );
/CTR-SDK-4.2.8-20130828/include/nn/math/ARMv6/
Dmath_Matrix44.h28 NN_MATH_INLINE MTX44* MTX44PerspectiveRadC(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f);
29 NN_MATH_INLINE MTX44* MTX44PerspectiveRadC_FAST(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f);
/CTR-SDK-4.2.8-20130828/include/nn/math/ARMv6/inline/
Dmath_Matrix44.ipp223 MTX44PerspectiveRadC(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f)
235 m[0][0] = cot / aspect;
260 MTX44PerspectiveRadC_FAST(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f)
280 m00 = cot / aspect;