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

  /external/webkit/WebCore/platform/graphics/chromium/
SimpleFontDataChromiumWin.cpp 81 GLYPHMETRICS glyphMetrics = {0};
83 DWORD len = GetGlyphOutlineW(dc, 'x', GGO_METRICS, &glyphMetrics, 0, 0, &identityMatrix);
84 if (len != GDI_ERROR && glyphMetrics.gmBlackBoxY > 0)
85 m_xHeight = static_cast<float>(glyphMetrics.gmBlackBoxY);
  /external/webkit/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 13 milliseconds