Lines Matching refs:writer
365 nw::font::TextWriter& writer, in DrawStringPreProcess() argument
374 writer.SetDispStringBuffer( m_pDrawStringBufferUpperLcd ); in DrawStringPreProcess()
375 writer.SetCursor( 0, 0 ); in DrawStringPreProcess()
377 writer.StartPrint(); in DrawStringPreProcess()
379 void AppBase::DrawStringPostProcess( nw::font::TextWriter& writer, int width, int height ) in DrawStringPostProcess() argument
381 writer.EndPrint(); in DrawStringPostProcess()
382 m_Drawer.BuildTextCommand( &writer ); in DrawStringPostProcess()
387 writer.UseCommandBuffer(); in DrawStringPostProcess()
397 nw::font::TextWriter writer; in Draw() local
398 writer.SetFont( &m_Font ); in Draw()
399 writer.SetCharSpace( 1.0f ); in Draw()
400 writer.EnableFixedWidth( true ); in Draw()
401 writer.SetFontSize( FONT_SIZE_HIGHT ); in Draw()
402 writer.SetFixedWidth( writer.GetLineHeight() / 2.f ); in Draw()
407 writer, in Draw()
411 OnDrawUpLCD( writer ); in Draw()
412 DrawStringPostProcess( writer, app.DISPLAY0_WIDTH, app.DISPLAY0_HEIGHT ); in Draw()
418 writer, in Draw()
422 OnDrawDownLCD( writer ); in Draw()
423 DrawStringPostProcess( writer, app.DISPLAY1_WIDTH, app.DISPLAY1_HEIGHT ); in Draw()