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