Lines Matching refs:z
342 void DEMOPuts( s16 x, s16 y, s16 z, char* string ) in DEMOPuts() argument
377 GXPosition3s16( (s16)(i*8+x ), (s16)(y ), z ); in DEMOPuts()
379 GXPosition3s16( (s16)(i*8+x+8), (s16)(y ), z ); in DEMOPuts()
381 GXPosition3s16( (s16)(i*8+x+8), (s16)(y+8 ), z ); in DEMOPuts()
383 GXPosition3s16( (s16)(i*8+x ), (s16)(y+8 ), z ); in DEMOPuts()
408 void DEMOPrintf( s16 x, s16 y, s16 z, char* fmt, ... ) in DEMOPrintf() argument
422 DEMOPuts( x, y, z, buf ); in DEMOPrintf()
536 static void DrawFontChar(int x, int y, int z, int xChar, int yChar) in DrawFontChar() argument
549 GXPosition3s16(posLeft , posTop , (s16) z); in DrawFontChar()
552 GXPosition3s16(posRight, posTop , (s16) z); in DrawFontChar()
555 GXPosition3s16(posRight, posBottom, (s16) z); in DrawFontChar()
558 GXPosition3s16(posLeft , posBottom, (s16) z); in DrawFontChar()
614 int DEMORFPuts(s16 x, s16 y, s16 z, char* string) in DEMORFPuts() argument
636 z *= 16; in DEMORFPuts()
660 DrawFontChar(x + width, y, z, xChar, yChar); in DEMORFPuts()
666 int DEMORFPutsEx(s16 x, s16 y, s16 z, char* string, s16 maxWidth, int length) in DEMORFPutsEx() argument
689 z *= 16; in DEMORFPutsEx()
715 DrawFontChar(x + width, y, z, xChar, yChar); in DEMORFPutsEx()
733 int DEMORFPrintf(s16 x, s16 y, s16 z, char* fmt, ...) in DEMORFPrintf() argument
747 return DEMORFPuts(x, y, z, buf); in DEMORFPrintf()