Lines Matching refs:x
93 nn::gx::UpdateBuffer( m_CurBuffer, byteByDot * m_BufferSize.x * m_BufferSize.y ); in Flush()
170 cursor.x += FONT_WIDTH; in PutString()
175 … if ( c == '\n' || ( autoLineFeed && str[ offset ] != '\n' && cursor.x + FONT_WIDTH >= boxWidth ) ) in PutString()
177 cursor.x = 0; in PutString()
219 if ( bufPos.y + y >= m_BufferSize.x || bufPos.y + y < 0 ) in PutChar()
223 for( s32 x = 0; x < FONT_HEIGHT; x++ ) in PutChar() local
226 if ( bufPos.x + x >= m_BufferSize.y || bufPos.x + x < 0 ) in PutChar()
230 if( printable && FONT_BITMAP[ c - ' ' ][ int( FONT_HEIGHT ) - x - 1 ][ y ] ) in PutChar()
232 PutDot( nn::math::VEC2( bufPos.x + x, bufPos.y + y ), charColorData, byteByDot ); in PutChar()
238 PutDot( nn::math::VEC2( bufPos.x + x, bufPos.y + y ), bgColorData, byteByDot ); in PutChar()
261 for( s32 y = 0; y < size.x; y++ ) in Clear()
264 if ( bufPos.y + y >= m_BufferSize.x || bufPos.y + y < 0 ) in Clear()
268 for( s32 x = 0; x < size.y; x++ ) in Clear() local
271 if ( bufPos.x + x >= m_BufferSize.y || bufPos.x + x < 0 ) in Clear()
275 PutDot( nn::math::VEC2( bufPos.x + x, bufPos.y + y ), bgColorData, byteByDot ); in Clear()
321 dst->x = m_BufferSize.y - src.y; in ConvertPositionUserOriginToDeviceOrigin()
322 dst->y = src.x; in ConvertPositionUserOriginToDeviceOrigin()
329 s32 linearPos = int( bufPos.y ) * int( m_BufferSize.y ) + int( bufPos.x ); in PutDot()