Lines Matching refs:REXDEMO_RAW_COUNT
41 #define REXDEMO_RAW_COUNT ( 24 + 1 ) macro
72 static char sampleString[ REXDEMO_RAW_COUNT ][ 256 ];
73 static GXColor sampleStringCol[ REXDEMO_RAW_COUNT ][ 256 ];
271 sampleString[ sampleNextRawIndex % REXDEMO_RAW_COUNT ][ sampleNextColIndex ] = 0x00; in REXDEMOReportEx()
281 sampleString[ sampleNextRawIndex % REXDEMO_RAW_COUNT ][ sampleNextColIndex ] = 0x00; in REXDEMOReportEx()
284 if( sampleNextRawIndex >= REXDEMO_RAW_COUNT ) in REXDEMOReportEx()
286 sampleRawIndex = ( sampleRawIndex + 1 ) % REXDEMO_RAW_COUNT; in REXDEMOReportEx()
291 sampleString[ sampleNextRawIndex % REXDEMO_RAW_COUNT ][ sampleNextColIndex ] = *p; in REXDEMOReportEx()
292 sampleStringCol[ sampleNextRawIndex % REXDEMO_RAW_COUNT ][ sampleNextColIndex ] = col; in REXDEMOReportEx()
297 if( sampleNextRawIndex >= REXDEMO_RAW_COUNT ) in REXDEMOReportEx()
299 sampleRawIndex = ( sampleRawIndex + 1 ) % REXDEMO_RAW_COUNT; in REXDEMOReportEx()
472 (int)( sampleRend.efbHeight / ( REXDEMO_RAW_COUNT - 1 ) ); in REXDEMOPrintf()
573 (int)( scrHeight / ( REXDEMO_RAW_COUNT - 1 ) ); in REXDEMODrawChar()
637 for( i = 0; i < ( REXDEMO_RAW_COUNT - 1 ); i ++ ) in RenderString()
640 s16 y = (s16)( ( scrHeight * i ) / ( REXDEMO_RAW_COUNT - 1 ) ); in RenderString()
643 … const char* ptr = &( sampleString[ ( sampleRawIndex + i ) % REXDEMO_RAW_COUNT ][ 0 ] ); in RenderString()
644 … const GXColor* strCol = &( sampleStringCol[ ( sampleRawIndex + i ) % REXDEMO_RAW_COUNT ][ 0 ] ); in RenderString()