Lines Matching refs:writer
363 nw::font::TextWriter& writer, in DrawStringPreProcess() argument
372 writer.SetDispStringBuffer( m_pDrawStringBufferUpperLcd ); in DrawStringPreProcess()
373 writer.SetCursor( 0, 0 ); in DrawStringPreProcess()
375 writer.StartPrint(); in DrawStringPreProcess()
377 void AppBase::DrawStringPostProcess( nw::font::TextWriter& writer, int width, int height ) in DrawStringPostProcess() argument
379 writer.EndPrint(); in DrawStringPostProcess()
380 m_Drawer.BuildTextCommand( &writer ); in DrawStringPostProcess()
385 writer.UseCommandBuffer(); in DrawStringPostProcess()
395 nw::font::TextWriter writer; in Draw() local
396 writer.SetFont( &m_Font ); in Draw()
397 writer.SetCharSpace( 1.0f ); in Draw()
398 writer.EnableFixedWidth( true ); in Draw()
399 writer.SetFontSize( FONT_SIZE_HIGHT ); in Draw()
400 writer.SetFixedWidth( writer.GetLineHeight() / 2.f ); in Draw()
405 writer, in Draw()
409 OnDrawUpLCD( writer ); in Draw()
410 DrawStringPostProcess( writer, app.DISPLAY0_WIDTH, app.DISPLAY0_HEIGHT ); in Draw()
416 writer, in Draw()
420 OnDrawDownLCD( writer ); in Draw()
421 DrawStringPostProcess( writer, app.DISPLAY1_WIDTH, app.DISPLAY1_HEIGHT ); in Draw()