Lines Matching refs:math
81 void DirectPrint::ChangeDisplaybuffer( void* dispbuf, GLenum format, const nn::math::VEC2& size ) in ChangeDisplaybuffer()
109 void DirectPrint::Printf( const nn::math::VEC2& pos, const char* format, ... ) in Printf()
119 void DirectPrint::Printf( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* fo… in Printf()
129 void DirectPrint::VPrintf( const nn::math::VEC2& pos, const char* format, va_list v ) in VPrintf()
136 void DirectPrint::VPrintf( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* f… in VPrintf()
145 void DirectPrint::PutString( const nn::math::VEC2& pos, const char* str ) in PutString()
152 void DirectPrint::PutString( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char*… in PutString()
154 nn::math::VEC2 cursor = pos; in PutString()
186 void DirectPrint::PutChar( const nn::math::VEC2& pos, char c ) in PutChar()
193 void DirectPrint::PutChar( const nn::math::VEC2& pos, bool fillBg, char c ) in PutChar()
202 nn::math::VEC2 bufPos; in PutChar()
203 ConvertPositionUserOriginToDeviceOrigin( &bufPos, pos + nn::math::VEC2( 0, FONT_HEIGHT ) ); 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()
249 nn::math::VEC2 pos( 0 , 0 ); in Clear()
250 nn::math::VEC2 size( 320 , 240 ); in Clear()
258 nn::math::VEC2 bufPos; in Clear()
259 ConvertPositionUserOriginToDeviceOrigin( &bufPos, pos + nn::math::VEC2( 0, size.y ) ); in Clear()
275 PutDot( nn::math::VEC2( bufPos.x + x, bufPos.y + y ), bgColorData, byteByDot ); in Clear()
319 void DirectPrint::ConvertPositionUserOriginToDeviceOrigin( nn::math::VEC2* dst, const nn::math::VEC… in ConvertPositionUserOriginToDeviceOrigin()
327 void DirectPrint::PutDot( const nn::math::VEC2& bufPos, const bit8* data, s32 byteByDot ) in PutDot()