Lines Matching refs:writer
491 nw::font::WideTextWriter writer; in DrawAscii() local
492 writer.SetDispStringBuffer(pDrawStringBuf); in DrawAscii()
493 writer.SetFont(pFont); in DrawAscii()
495 writer.SetCursor(0, 0); in DrawAscii()
497 writer.StartPrint(); in DrawAscii()
498 writer.Printf(L"DEMO: %ls\n", title); in DrawAscii()
501 writer.Print(L"Glyph Sample:\n"); in DrawAscii()
502 writer.MoveCursorX(5); in DrawAscii()
503 writer.Print(L" !\"#$%&'()*+,-./0123456789:;<=>?\n"); in DrawAscii()
504 writer.Print(L"@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_\n"); in DrawAscii()
505 writer.Print(L"`abcdefghijklmnopqrstuvwxyz{|}~\n"); in DrawAscii()
506 writer.EndPrint(); in DrawAscii()
508 pDrawer->BuildTextCommand(&writer); in DrawAscii()
513 writer.UseCommandBuffer(); in DrawAscii()