HomeSort by relevance Sort by last modified time
    Searched refs:glyphMetrics (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/chromium/
SimpleFontDataChromiumWin.cpp 89 GLYPHMETRICS glyphMetrics = {0};
91 DWORD len = GetGlyphOutlineW(dc, 'x', GGO_METRICS, &glyphMetrics, 0, 0, &identityMatrix);
92 if (len != GDI_ERROR && glyphMetrics.gmBlackBoxY > 0)
93 xHeight = static_cast<float>(glyphMetrics.gmBlackBoxY);
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCGWin.cpp 55 GLYPHMETRICS glyphMetrics;
58 DWORD outlineLength = GetGlyphOutline(hdc, glyph, GGO_GLYPH_INDEX | GGO_NATIVE, &glyphMetrics, 0, 0, &identity);
64 GetGlyphOutline(hdc, glyph, GGO_GLYPH_INDEX | GGO_NATIVE, &glyphMetrics, outlineLength, outline.data(), &identity);

Completed in 754 milliseconds