Home
last modified time | relevance | path

Searched refs:fovyCos (Results 1 – 4 of 4) sorted by relevance

/TwlSDK-5.4/include/nitro/gx/
Dg3_util.h40 void G3i_PerspectiveW_(fx32 fovySin, fx32 fovyCos, fx32 aspect, fx32 n, fx32 f, fx32 scaleW,
105 void G3_Perspective(fx32 fovySin, fx32 fovyCos, fx32 aspect, fx32 n, fx32 f, MtxFx44 *mtx) in G3_Perspective() argument
107 G3i_PerspectiveW_(fovySin, fovyCos, aspect, n, f, FX32_ONE, TRUE, mtx); in G3_Perspective()
177 G3_PerspectiveW(fx32 fovySin, fx32 fovyCos, fx32 aspect, fx32 n, fx32 f, fx32 scaleW, MtxFx44 *mtx) in G3_PerspectiveW() argument
179 G3i_PerspectiveW_(fovySin, fovyCos, aspect, n, f, scaleW, TRUE, mtx); in G3_PerspectiveW()
/TwlSDK-5.4/include/nitro/fx/
Dfx_mtx44.h50 void MTX_PerspectiveW(fx32 fovySin, fx32 fovyCos, fx32 aspect, fx32 n, fx32 f, fx32 scaleW, MtxF…
267 void MTX_Perspective(fx32 fovySin, fx32 fovyCos, fx32 aspect, fx32 n, fx32 f, MtxFx44 *mtx) in MTX_Perspective() argument
269 MTX_PerspectiveW(fovySin, fovyCos, aspect, n, f, FX32_ONE, mtx); in MTX_Perspective()
/TwlSDK-5.4/build/libraries/gx/ARM9/src/
Dg3_util.c87 void G3i_PerspectiveW_(fx32 fovySin, fx32 fovyCos, fx32 aspect, fx32 n, fx32 f, fx32 scaleW, in G3i_PerspectiveW_() argument
95 MTX_PerspectiveW(fovySin, fovyCos, aspect, n, f, scaleW, mtx); in G3i_PerspectiveW_()
/TwlSDK-5.4/build/libraries/fx/common/src/
Dfx_mtx44.c574 void MTX_PerspectiveW(fx32 fovySin, fx32 fovyCos, fx32 aspect, fx32 n, fx32 f, fx32 scaleW, MtxFx44… in MTX_PerspectiveW() argument
581 SDK_TASSERTMSG(fovyCos > -FX32_ONE in MTX_PerspectiveW()
582 && fovyCos < FX32_ONE, "G3_Perspective: cosine of fovy out of range."); in MTX_PerspectiveW()
588 one_tan = FX_Div((fx32)fovyCos, (fx32)fovySin); in MTX_PerspectiveW()