Lines Matching refs:bIsRight
179 static void drawCube(u16 Rotate, BOOL bIsRight) in drawCube() argument
183 const int pos = bIsRight ? +3 : -3; in drawCube()
216 ColVtxQuad(2, 0, 4, 6, bIsRight); in drawCube()
217 ColVtxQuad(7, 5, 1, 3, bIsRight); in drawCube()
218 ColVtxQuad(6, 4, 5, 7, bIsRight); in drawCube()
219 ColVtxQuad(3, 1, 0, 2, bIsRight); in drawCube()
220 ColVtxQuad(5, 4, 0, 1, bIsRight); in drawCube()
221 ColVtxQuad(6, 7, 3, 2, bIsRight); in drawCube()
238 static void setupFrame(BOOL bIsRight) in setupFrame() argument
263 if (bIsRight) in setupFrame()
426 BOOL bIsRight; in GraphicMain() local
429 for (bIsRight = TRUE;; bIsRight = !bIsRight) in GraphicMain()
436 setupFrame(bIsRight); in GraphicMain()
437 drawCube(Rotate, bIsRight); in GraphicMain()
448 GX_SetDispSelect(bIsRight ? GX_DISP_SELECT_SUB_MAIN : GX_DISP_SELECT_MAIN_SUB); in GraphicMain()