Home
last modified time | relevance | path

Searched refs:projectionMtxTop (Results 1 – 5 of 5) sorted by relevance

/dports/games/libretro-paralleln64/parallel-n64-6e26fbb/gles2rice/src/
H A DRender.h105 inline int GetProjectMatrixLevel(void) { return gRSP.projectionMtxTop; } in GetProjectMatrixLevel()
110 if (gRSP.projectionMtxTop > 0) in PopProjection()
111 gRSP.projectionMtxTop--; in PopProjection()
H A DRender.cpp129 gRSP.projectionMtxTop = 0; in ResetMatrices()
143 if (gRSP.projectionMtxTop < (RICE_MATRIX_STACK-1)) in SetProjection()
144 gRSP.projectionMtxTop++; in SetProjection()
147 gRSP.projectionMtxs[gRSP.projectionMtxTop] = mat; in SetProjection()
149 … gRSP.projectionMtxs[gRSP.projectionMtxTop] = mat * gRSP.projectionMtxs[gRSP.projectionMtxTop-1]; in SetProjection()
155 gRSP.projectionMtxs[gRSP.projectionMtxTop] = mat; in SetProjection()
157 … gRSP.projectionMtxs[gRSP.projectionMtxTop] = mat * gRSP.projectionMtxs[gRSP.projectionMtxTop]; in SetProjection()
H A DRenderBase.h132 uint32_t projectionMtxTop; member
H A DRiceDebugger.cpp542 DumpMatrix2(gRSP.projectionMtxs[gRSP.projectionMtxTop],"Projection Top Matrix"); in DumpInfo()
H A DRenderBase.cpp203 gRSP.projectionMtxTop = gRSP.modelViewMtxTop = 0; in InitRenderBase()
1324 …rldProject = gRSP.modelviewMtxs[gRSP.modelViewMtxTop] * gRSP.projectionMtxs[gRSP.projectionMtxTop]; in UpdateCombinedMatrix()