Home
last modified time | relevance | path

Searched refs:aspect (Results 1 – 7 of 7) 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
139 ASSERTMSG( (aspect != 0), MTX_PERSPECTIVE_3 ); in C_MTXPerspective()
147 m[0][0] = cot / aspect; in C_MTXPerspective()
Dmtx.c2266 void C_MTXLightPerspective ( Mtx m, f32 fovY, f32 aspect, float scaleS, in C_MTXLightPerspective() argument
2274 ASSERTMSG( (aspect != 0), MTX_LIGHT_PERSPECTIVE_3 ); in C_MTXLightPerspective()
2282 m[0][0] = (cot / aspect) * scaleS; in C_MTXLightPerspective()
/CafeSDK-2.12.13-1/system/src/tool/gfx/projects/SLConverter/DeferredTest/
DdeferredRendering.cpp203 f32 aspect = (f32)SURFACE_WIDTH / (f32)SURFACE_HEIGHT; in CameraInit() local
214 MTXPerspective(projMtx44, pers, aspect, znear, zfar); in CameraInit()