Home
last modified time | relevance | path

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

/CafeSDK-2.12.13-1/system/src/lib/mtx/headers/cafe/mtx/
DmatVec.h545 static inline void MAT44Perspective ( Mat44 *m, f32 fovY, f32 aspect, f32 n, f32 f ) in MAT44Perspective() argument
546 { MTXPerspective ( (Mtx44Ptr)(m->mtx), fovY, aspect, n, f ); } in MAT44Perspective()
614 static inline void MAT34LightPerspective ( Mat34 *m, f32 fovY, f32 aspect, f32 scaleS, in MAT34LightPerspective() argument
616 { MTXLightPerspective( (MtxPtr)(m->mtx), fovY, aspect, scaleS, scaleT, transS, transT ); } in MAT34LightPerspective()
DmtxVec.h782 void C_MTXPerspective ( Mtx44 m, f32 fovY, f32 aspect, f32 n, f32 f );
860 void C_MTXLightPerspective ( Mtx m, f32 fovY, f32 aspect, f32 scaleS,
/CafeSDK-2.12.13-1/system/include/cafe/mtx/
DmatVec.h545 static inline void MAT44Perspective ( Mat44 *m, f32 fovY, f32 aspect, f32 n, f32 f ) in MAT44Perspective() argument
546 { MTXPerspective ( (Mtx44Ptr)(m->mtx), fovY, aspect, n, f ); } in MAT44Perspective()
614 static inline void MAT34LightPerspective ( Mat34 *m, f32 fovY, f32 aspect, f32 scaleS, in MAT34LightPerspective() argument
616 { MTXLightPerspective( (MtxPtr)(m->mtx), fovY, aspect, scaleS, scaleT, transS, transT ); } in MAT34LightPerspective()
DmtxVec.h782 void C_MTXPerspective ( Mtx44 m, f32 fovY, f32 aspect, f32 n, f32 f );
860 void C_MTXLightPerspective ( Mtx m, f32 fovY, f32 aspect, f32 scaleS,
/CafeSDK-2.12.13-1/system/src/lib/mtx/
Dmtx44.c131 void C_MTXPerspective ( Mtx44 m, f32 fovY, f32 aspect, f32 n, f32 f ) in C_MTXPerspective() argument
138 ASSERTMSG( ( (fovY > 0.0) && ( fovY < 180.0) ), MTX_PERSPECTIVE_2 ); in C_MTXPerspective()
142 angle = fovY * 0.5f; in C_MTXPerspective()
Dmtx.c2266 void C_MTXLightPerspective ( Mtx m, f32 fovY, f32 aspect, float scaleS, in C_MTXLightPerspective() argument
2273 ASSERTMSG( ( (fovY > 0.0) && ( fovY < 180.0) ), MTX_LIGHT_PERSPECTIVE_2 ); in C_MTXLightPerspective()
2277 angle = fovY * 0.5f; in C_MTXLightPerspective()