Home
last modified time | relevance | path

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

/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/
Dmath_Matrix44.h68 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…
[all …]
Dmath_Geometry.h371 FRUSTUM(f32 fovyRad, f32 aspect, f32 n, f32 f, const MTX34& camera) in FRUSTUM() argument
373 Set(fovyRad, aspect, n, f, camera); in FRUSTUM()
428 void Set(f32 fovyRad, f32 aspect, f32 n, f32 f, const MTX34& camera) in Set() argument
432 f32 nx = ny * aspect; in Set()
Dmath_Matrix34.h58 NN_MATH_INLINE MTX34* MTX34TextureProjectionPerspective(MTX34* pOut, f32 fovy, f32 aspect, f32 scal…
436 …self_type& SetupTextureProjectionFrustum(f32 fovyRad, f32 aspect, f32 scaleS, f32 scaleT, f32 tran… in SetupTextureProjectionFrustum()
438 …return *MTX34TextureProjectionPerspective(this, fovyRad, aspect, scaleS, scaleT, translateS, trans… in SetupTextureProjectionFrustum()
/CTR-SDK-1.0.0/CTR_SDK/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-1.0.0/CTR_SDK/include/nn/math/inline/
Dmath_Matrix34.ipp251 @param[in] aspect クリップ面のアスペクト比です。
260 MTX34TextureProjectionPerspective(MTX34* pOut, f32 fovy, f32 aspect, f32 scaleS, f32 scaleT, f32 tr…
263 NN_ASSERT(aspect != 0.0f);
271 mtx[0][0] = (cot / aspect) * scaleS;
Dmath_Matrix44.ipp250 @param[in] aspect 視野のアスペクト比(幅/高さ)
258 MTX44PerspectivePivotRad(MTX44* pOut, f32 fovy, f32 aspect, f32 n, f32 f, PivotDirection pivot)
260 MTX44PerspectiveRad( pOut, fovy, aspect, n, f );
/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/ARMv6/inline/
Dmath_Matrix44.ipp216 @param[in] aspect 視野のアスペクト比(幅/高さ)
223 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;