Lines Matching refs:y
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()
391 if ( c == '\n' ) y += 8; 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
540 s16 posTop = (s16) (y - (FontData->ascent * FontSize / FontData->cellWidth)); in DrawFontChar()
541 s16 posBottom = (s16) (y + (FontData->descent * FontSize / FontData->cellWidth)); in DrawFontChar()
614 int DEMORFPuts(s16 x, s16 y, s16 z, char* string) in DEMORFPuts() argument
635 y *= 16; in DEMORFPuts()
644 y += FontData->leading * FontSize / FontData->cellWidth; 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
688 y *= 16; in DEMORFPutsEx()
700 y += FontData->leading * FontSize / FontData->cellWidth; in DEMORFPutsEx()
711 y += FontData->leading * FontSize / FontData->cellWidth; 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()