Lines Matching refs:writer
459 nn::font::WideTextWriter writer; in DrawAscii() local
460 writer.SetDispStringBuffer(pDrawStringBuf); in DrawAscii()
461 writer.SetFont(pFont); in DrawAscii()
463 writer.SetCursor(0, 0); in DrawAscii()
465 writer.StartPrint(); in DrawAscii()
466 writer.Printf(L"DEMO: %ls\n", title); in DrawAscii()
469 writer.Print(L"Glyph Sample:\n"); in DrawAscii()
470 writer.MoveCursorX(5); in DrawAscii()
471 writer.Print(L" !\"#$%&'()*+,-./0123456789:;<=>?\n"); in DrawAscii()
472 writer.Print(L"@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_\n"); in DrawAscii()
473 writer.Print(L"`abcdefghijklmnopqrstuvwxyz{|}~\n"); in DrawAscii()
474 writer.EndPrint(); in DrawAscii()
476 pDrawer->BuildTextCommand(&writer); in DrawAscii()
481 writer.UseCommandBuffer(); in DrawAscii()