Lines Matching refs:z
325 void DEMOPuts( s16 x, s16 y, s16 z, char* string ) in DEMOPuts() argument
360 GXPosition3s16( (s16)(i*8+x ), (s16)(y ), z ); in DEMOPuts()
362 GXPosition3s16( (s16)(i*8+x+8), (s16)(y ), z ); in DEMOPuts()
364 GXPosition3s16( (s16)(i*8+x+8), (s16)(y+8 ), z ); in DEMOPuts()
366 GXPosition3s16( (s16)(i*8+x ), (s16)(y+8 ), z ); in DEMOPuts()
391 void DEMOPrintf( s16 x, s16 y, s16 z, char* fmt, ... ) in DEMOPrintf() argument
402 DEMOPuts( x, y, z, buf ); in DEMOPrintf()
516 static void DrawFontChar(int x, int y, int z, int xChar, int yChar) in DrawFontChar() argument
529 GXPosition3s16(posLeft , posTop , (s16) z); in DrawFontChar()
532 GXPosition3s16(posRight, posTop , (s16) z); in DrawFontChar()
535 GXPosition3s16(posRight, posBottom, (s16) z); in DrawFontChar()
538 GXPosition3s16(posLeft , posBottom, (s16) z); in DrawFontChar()
594 int DEMORFPuts(s16 x, s16 y, s16 z, char* string) in DEMORFPuts() argument
616 z *= 16; in DEMORFPuts()
640 DrawFontChar(x + width, y, z, xChar, yChar); in DEMORFPuts()
646 int DEMORFPutsEx(s16 x, s16 y, s16 z, char* string, s16 maxWidth, int length) in DEMORFPutsEx() argument
669 z *= 16; in DEMORFPutsEx()
695 DrawFontChar(x + width, y, z, xChar, yChar); in DEMORFPutsEx()
713 int DEMORFPrintf(s16 x, s16 y, s16 z, char* fmt, ...) in DEMORFPrintf() argument
724 return DEMORFPuts(x, y, z, buf); in DEMORFPrintf()