Home
last modified time | relevance | path

Searched refs:y (Results 1 – 9 of 9) sorted by relevance

/RevoEX-2.3/build/demos/nwc24demo/src/FLViewer/
DFLViewerRender.c67 static void PrintType ( s16 x, s16 y, NWC24FriendInfo* info );
68 static void PrintTypeCore ( s16 x, s16 y, u32 type, BOOL bEditMode );
69 static void PrintStatus ( s16 x, s16 y, NWC24FriendInfo* info );
70 static void PrintStatusCore ( s16 x, s16 y, u32 status, BOOL bEditMode );
71 static void PrintFdId ( s16 x, s16 y, NWC24FriendInfo* info );
72 static void PrintFdIdCore ( s16 x, s16 y, const char* strFdId, BOOL bEditMode );
73 static void PrintName ( s16 x, s16 y, NWC24FriendInfo* info );
74 static void PrintNameCore ( s16 x, s16 y, const char* name, BOOL bEditMode );
75 static void PrintAddress ( s16 x, s16 y, NWC24FriendInfo* info );
76 static void PrintWiiId ( s16 x, s16 y, const char* strWiiId, BOOL bEditMode );
[all …]
/RevoEX-2.3/build/demos/mpdsdemo/include/
Dball.h63 int y; member
100 shared->ball[i].y = (40 + i * 8); in InitBall()
175 int y = shared->ball[i].y; in UpdateBalls() local
177 y += shared->ball[i].vy / BALL_VELOCITY_ONE; in UpdateBalls()
187 if ((y < 0) || (y > BALL_FIELD_HEIGHT - BALL_RADIUS * 2)) in UpdateBalls()
199 shared->ball[i].y = y; in UpdateBalls()
205 int dy = shared->ball[j].y - y; in UpdateBalls()
/RevoEX-2.3/build/tools/nwc24cc/
DMakefile66 yacc.y: $(CHANS_ROOT)/compiler/yacc.y
69 chanscc.c: yacc.y
76 rm -f *.obj *.exe *.c *.y
/RevoEX-2.3/build/demos/share/src/
Dgraphic.c92 static int REXDEMODrawChar( int x, int y, int z, int w, int h, const char **string );
458 REXDEMOPrintf( int x, int y, int z, const char *fmt, ... ) in REXDEMOPrintf() argument
477 y += h; in REXDEMOPrintf()
484 ox += REXDEMODrawChar( ox, y, z, -1, -1, &ptr ); in REXDEMOPrintf()
517 sampleCamera.pos.y = 0.0f; in InitString()
520 sampleCamera.up.y = 1.0f; in InitString()
523 sampleCamera.target.y = 0.0f; in InitString()
552 REXDEMODrawChar( int x, int y, int z, int w, int h, const char **string ) in REXDEMODrawChar() argument
580 GXPosition3s16( (s16)( x + 0 ), (s16)( y + 0 ), (s16)z ); in REXDEMODrawChar()
582 GXPosition3s16( (s16)( x + w ), (s16)( y + 0 ), (s16)z ); in REXDEMODrawChar()
[all …]
/RevoEX-2.3/build/demos/nwc24demo/src/MsgViewer/
DMsgViewerRender.c91 static void PrintFrom ( s16 x, s16 y, MsgData* msgData );
92 static void PrintTo ( s16 x, s16 y, MsgData* msgData );
93 static void PrintSubject ( s16 x, s16 y, MsgData* msgData );
94 static void PrintBodyText ( s16 x, s16 y, MsgData* msgData );
566 static void PrintFrom( s16 x, s16 y, MsgData* msgData ) in PrintFrom() argument
568 (void)DEMORFPrintf( x, y, 0, "%s", msgData->from ); in PrintFrom()
580 static void PrintTo( s16 x, s16 y, MsgData* msgData ) in PrintTo() argument
586 x += DEMORFPrintf( x, y, 0, "%s", msgData->to[i] ); in PrintTo()
589 x += DEMORFPrintf( x, y, 0, ", " ); in PrintTo()
604 static void PrintSubject( s16 x, s16 y, MsgData* msgData ) in PrintSubject() argument
[all …]
/RevoEX-2.3/build/demos/wddemo/src/
Dsample.c331 sampleCamera.pos.y = 0.0f; in InitString()
334 sampleCamera.up.y = 1.0f; in InitString()
337 sampleCamera.target.y = 0.0f; in InitString()
434 s16 x, y, z, w, h; in RenderString() local
457 y = (s16)( ( scrHeight * i ) / ( SAMPLE_RAW_COUNT - 1 ) ); in RenderString()
473 GXPosition3s16( (s16)( x + 0 ), (s16)( y + 0 ), z ); in RenderString()
475 GXPosition3s16( (s16)( x + w ), (s16)( y + 0 ), z ); in RenderString()
477 GXPosition3s16( (s16)( x + w ), (s16)( y + h ), z ); in RenderString()
479 GXPosition3s16( (s16)( x + 0 ), (s16)( y + h ), z ); in RenderString()
/RevoEX-2.3/build/demos/share/include/rexdemo/
Dgraphic.h73 void REXDEMOPrintf( int x, int y, int z, const char *fmt, ... );
/RevoEX-2.3/build/demos/mpdsdemo/src/
Dmpdsmodel.c448 s16 y = 10; in Draw() local
453 … REXDEMOPrintf(x + shared->ball[i].x, y + shared->ball[i].y, 0, "%c", shared->ball[i].chr); in Draw()
505 GXPosition3s16((s16) (x), (s16) (y), (s16) z); in Draw()
507 GXPosition3s16((s16) (x + BALL_FIELD_WIDTH), (s16) (y), (s16) z); in Draw()
509 … GXPosition3s16((s16) (x + BALL_FIELD_WIDTH), (s16) (y + BALL_FIELD_HEIGHT), (s16) z); in Draw()
511 GXPosition3s16((s16) (x), (s16) (y + BALL_FIELD_HEIGHT), (s16) z); in Draw()
/RevoEX-2.3/build/demos/mpdldemo/src/
Dmpdlntr2rvl.c541 pointY = (int)(REXDEMOKPadStatus[0].pos.y * 224 + 224); in DoPadSharing()