HomeSort by relevance Sort by last modified time
    Searched full:outlinelength (Results 1 - 1 of 1) sorted by null

  /external/webkit/WebCore/platform/graphics/win/
FontCGWin.cpp 58 DWORD outlineLength = GetGlyphOutline(hdc, glyph, GGO_GLYPH_INDEX | GGO_NATIVE, &glyphMetrics, 0, 0, &identity);
59 ASSERT(outlineLength >= 0);
60 if (outlineLength < 0)
63 Vector<UInt8> outline(outlineLength);
64 GetGlyphOutline(hdc, glyph, GGO_GLYPH_INDEX | GGO_NATIVE, &glyphMetrics, outlineLength, outline.data(), &identity);
67 while (offset < outlineLength) {

Completed in 146 milliseconds