Lines Matching refs:y
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()
385 if ( c == '\n' ) y += 8; 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
534 s16 posTop = (s16) (y - (FontData->ascent * FontSize / FontData->cellWidth)); in DrawFontChar()
535 s16 posBottom = (s16) (y + (FontData->descent * FontSize / FontData->cellWidth)); in DrawFontChar()
608 int DEMORFPuts(s16 x, s16 y, s16 z, char* string) in DEMORFPuts() argument
629 y *= 16; in DEMORFPuts()
638 y += FontData->leading * FontSize / FontData->cellWidth; 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
682 y *= 16; in DEMORFPutsEx()
694 y += FontData->leading * FontSize / FontData->cellWidth; in DEMORFPutsEx()
705 y += FontData->leading * FontSize / FontData->cellWidth; 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()