Lines Matching refs:z0
680 s8 x, y, z0, z1; in DrawFloor() local
697 z0 = FloorElvTbl[y][x]; in DrawFloor()
699 GXPosition3s8(x, y, z0); in DrawFloor()
701 GXPosition3s8(x, (s8)(y+1), z0); in DrawFloor()
703 GXPosition3s8((s8)(x+1), (s8)(y+1), z0); in DrawFloor()
705 GXPosition3s8((s8)(x+1), y, z0); in DrawFloor()
718 z0 = (s8)(( x == 0 ) ? 0 : FloorElvTbl[y][x-1]); in DrawFloor()
720 n = (u8)(( z0 > z1 ) ? 0 : 1); in DrawFloor()
722 GXPosition3s8(x, y, z0); in DrawFloor()
724 GXPosition3s8(x, (s8)(y+1), z0); in DrawFloor()
741 z0 = (s8)(( y == 0 ) ? 0 : FloorElvTbl[y-1][x]); in DrawFloor()
743 n = (u8)(( z0 > z1 ) ? 2 : 3); in DrawFloor()
745 GXPosition3s8(x, y, z0); in DrawFloor()
751 GXPosition3s8((s8)(x+1), y, z0); in DrawFloor()