Lines Matching refs:z
336 void DEMOPuts( s16 x, s16 y, s16 z, char* string ) in DEMOPuts() argument
371 GXPosition3s16( (s16)(i*8+x ), (s16)(y ), z ); in DEMOPuts()
373 GXPosition3s16( (s16)(i*8+x+8), (s16)(y ), z ); in DEMOPuts()
375 GXPosition3s16( (s16)(i*8+x+8), (s16)(y+8 ), z ); in DEMOPuts()
377 GXPosition3s16( (s16)(i*8+x ), (s16)(y+8 ), z ); in DEMOPuts()
402 void DEMOPrintf( s16 x, s16 y, s16 z, char* fmt, ... ) in DEMOPrintf() argument
416 DEMOPuts( x, y, z, buf ); in DEMOPrintf()
530 static void DrawFontChar(int x, int y, int z, int xChar, int yChar) in DrawFontChar() argument
543 GXPosition3s16(posLeft , posTop , (s16) z); in DrawFontChar()
546 GXPosition3s16(posRight, posTop , (s16) z); in DrawFontChar()
549 GXPosition3s16(posRight, posBottom, (s16) z); in DrawFontChar()
552 GXPosition3s16(posLeft , posBottom, (s16) z); in DrawFontChar()
608 int DEMORFPuts(s16 x, s16 y, s16 z, char* string) in DEMORFPuts() argument
630 z *= 16; in DEMORFPuts()
654 DrawFontChar(x + width, y, z, xChar, yChar); in DEMORFPuts()
660 int DEMORFPutsEx(s16 x, s16 y, s16 z, char* string, s16 maxWidth, int length) in DEMORFPutsEx() argument
683 z *= 16; in DEMORFPutsEx()
709 DrawFontChar(x + width, y, z, xChar, yChar); in DEMORFPutsEx()
727 int DEMORFPrintf(s16 x, s16 y, s16 z, char* fmt, ...) in DEMORFPrintf() argument
741 return DEMORFPuts(x, y, z, buf); in DEMORFPrintf()