Lines Matching refs:glyphbuf

553                           SkAutoSTMalloc<BUFFERSIZE, uint8_t>* glyphbuf);
1320 GDIGlyphbufferPointIter(const uint8_t* glyphbuf, DWORD total_size) in GDIGlyphbufferPointIter() argument
1321 : fHeaderIter(glyphbuf, total_size), fCurveIter(), fPointIter() in GDIGlyphbufferPointIter()
1362 GDIPolygonHeaderIter(const uint8_t* glyphbuf, DWORD total_size) in GDIPolygonHeaderIter() argument
1363 : fCurPolygon(reinterpret_cast<const TTPOLYGONHEADER*>(glyphbuf)) in GDIPolygonHeaderIter()
1364 , fEndPolygon(SkTAddOffset<const TTPOLYGONHEADER>(glyphbuf, total_size)) in GDIPolygonHeaderIter()
1460 static void sk_path_from_gdi_path(SkPath* path, const uint8_t* glyphbuf, DWORD total_size) { in sk_path_from_gdi_path() argument
1461 const uint8_t* cur_glyph = glyphbuf; in sk_path_from_gdi_path()
1462 const uint8_t* end_glyph = glyphbuf + total_size; in sk_path_from_gdi_path()
1517 static bool sk_path_from_gdi_paths(SkPath* path, const uint8_t* glyphbuf, DWORD total_size, in sk_path_from_gdi_paths() argument
1519 const uint8_t* cur_glyph = glyphbuf; in sk_path_from_gdi_paths()
1520 const uint8_t* end_glyph = glyphbuf + total_size; in sk_path_from_gdi_paths()
1586 SkAutoSTMalloc<BUFFERSIZE, uint8_t>* glyphbuf) in getGDIGlyphPath() argument
1590 …DWORD total_size = GetGlyphOutlineW(fDDC, glyph.getGlyphID(), flags, &gm, BUFFERSIZE, glyphbuf->ge… in getGDIGlyphPath()
1608 glyphbuf->reset(total_size); in getGDIGlyphPath()
1610 …DWORD ret = GetGlyphOutlineW(fDDC, glyph.getGlyphID(), flags, &gm, total_size, glyphbuf->get(), &f… in getGDIGlyphPath()
1613 …ret = GetGlyphOutlineW(fDDC, glyph.getGlyphID(), flags, &gm, total_size, glyphbuf->get(), &fMat22); in getGDIGlyphPath()
1642 SkAutoSTMalloc<BUFFERSIZE, uint8_t> glyphbuf(BUFFERSIZE); in generatePath() local
1643 DWORD total_size = getGDIGlyphPath(glyph, format, &glyphbuf); in generatePath()
1649 sk_path_from_gdi_path(path, glyphbuf, total_size); in generatePath()
1660 if (!sk_path_from_gdi_paths(path, glyphbuf, total_size, in generatePath()
1664 sk_path_from_gdi_path(path, glyphbuf, total_size); in generatePath()