Lines Matching refs:writer
376 nw::font::TextWriter& writer, in DrawStringPreProcess() argument
385 writer.SetDispStringBuffer( m_pDrawStringBufferUpperLcd ); in DrawStringPreProcess()
386 writer.SetCursor( 0, 0 ); in DrawStringPreProcess()
388 writer.StartPrint(); in DrawStringPreProcess()
390 void AppBase::DrawStringPostProcess( nw::font::TextWriter& writer, int width, int height ) in DrawStringPostProcess() argument
392 writer.EndPrint(); in DrawStringPostProcess()
393 m_Drawer.BuildTextCommand( &writer ); in DrawStringPostProcess()
398 writer.UseCommandBuffer(); in DrawStringPostProcess()
408 nw::font::TextWriter writer; in Draw() local
409 writer.SetFont( &m_Font ); in Draw()
410 writer.SetCharSpace( 1.0f ); in Draw()
411 writer.EnableFixedWidth( true ); in Draw()
412 writer.SetFontSize( FONT_SIZE_HIGHT ); in Draw()
413 writer.SetFixedWidth( writer.GetLineHeight() / 2.f ); in Draw()
418 writer, in Draw()
422 OnDrawUpLCD( writer ); in Draw()
423 DrawStringPostProcess( writer, app.DISPLAY0_WIDTH, app.DISPLAY0_HEIGHT ); in Draw()
429 writer, in Draw()
433 OnDrawDownLCD( writer ); in Draw()
434 DrawStringPostProcess( writer, app.DISPLAY1_WIDTH, app.DISPLAY1_HEIGHT ); in Draw()