Home
last modified time | relevance | path

Searched refs:scaleS (Results 1 – 3 of 3) sorted by relevance

/RvlSDK-3.2.2/build/demos/gddemo/src/
Dgd-tev-gc.c560 u16 scaleS, scaleT; in PatchShaderDLTCScale() local
578 scaleS = GXGetTexObjWidth(&MyTexObjs[tmid]); in PatchShaderDLTCScale()
587 GDSetTexCoordScale2(tcid, scaleS, biasS, GX_DISABLE, in PatchShaderDLTCScale()
/RvlSDK-3.2.2/include/revolution/
Dmtx.h389 f32 scaleS, f32 scaleT, f32 transS,
392 void C_MTXLightPerspective ( Mtx m, f32 fovY, f32 aspect, f32 scaleS,
395 void C_MTXLightOrtho ( Mtx m, f32 t, f32 b, f32 l, f32 r, f32 scaleS,
/RvlSDK-3.2.2/build/libraries/mtx/src/
Dmtx.c2534 float scaleS, float scaleT, float transS, in C_MTXLightFrustum() argument
2548 m[0][0] = ((2*n) * tmp) * scaleS; in C_MTXLightFrustum()
2550 m[0][2] = (((r + l) * tmp) * scaleS) - transS; in C_MTXLightFrustum()
2598 void C_MTXLightPerspective ( Mtx m, f32 fovY, f32 aspect, float scaleS, in C_MTXLightPerspective() argument
2614 m[0][0] = (cot / aspect) * scaleS; in C_MTXLightPerspective()
2666 void C_MTXLightOrtho ( Mtx m, f32 t, f32 b, f32 l, f32 r, float scaleS, in C_MTXLightOrtho() argument
2680 m[0][0] = (2.0f * tmp * scaleS); in C_MTXLightOrtho()
2683 m[0][3] = ((-(r + l) * tmp) * scaleS) + transS; in C_MTXLightOrtho()