Lines Matching refs:pos
109 void DirectPrint::Printf( const nn::math::VEC2& pos, const char* format, ... ) in Printf() argument
113 VPrintf( pos, format, v ); in Printf()
119 void DirectPrint::Printf( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* fo… in Printf() argument
123 VPrintf( pos, autoLineFeed, fillBg, format, v ); in Printf()
129 void DirectPrint::VPrintf( const nn::math::VEC2& pos, const char* format, va_list v ) in VPrintf() argument
131 VPrintf( pos, true, true, format, v ); in VPrintf()
136 void DirectPrint::VPrintf( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char* f… in VPrintf() argument
140 PutString( pos, autoLineFeed, fillBg, buf ); in VPrintf()
145 void DirectPrint::PutString( const nn::math::VEC2& pos, const char* str ) in PutString() argument
147 PutString( pos, true, true, str ); in PutString()
152 void DirectPrint::PutString( const nn::math::VEC2& pos, bool autoLineFeed, bool fillBg, const char*… in PutString() argument
154 nn::math::VEC2 cursor = pos; in PutString()
186 void DirectPrint::PutChar( const nn::math::VEC2& pos, char c ) in PutChar() argument
188 PutChar( pos, true, c ); in PutChar()
193 void DirectPrint::PutChar( const nn::math::VEC2& pos, bool fillBg, char c ) in PutChar() argument
203 ConvertPositionUserOriginToDeviceOrigin( &bufPos, pos + nn::math::VEC2( 0, FONT_HEIGHT ) ); in PutChar()
249 nn::math::VEC2 pos( 0 , 0 ); in Clear() local
259 ConvertPositionUserOriginToDeviceOrigin( &bufPos, pos + nn::math::VEC2( 0, size.y ) ); in Clear()