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

  /external/webkit/Source/WebCore/platform/graphics/wince/
FontPlatformData.cpp 245 LOGFONT& winFont = fontData->m_font;
247 winFont.lfHeight = -72;
248 winFont.lfWidth = 0;
249 winFont.lfEscapement = 0;
250 winFont.lfOrientation = 0;
251 winFont.lfUnderline = false;
252 winFont.lfStrikeOut = false;
253 winFont.lfCharSet = DEFAULT_CHARSET;
254 winFont.lfOutPrecision = OUT_DEFAULT_PRECIS;
255 winFont.lfQuality = CLEARTYPE_QUALITY; //DEFAULT_QUALITY
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
SimpleFontDataChromiumWin.cpp 117 LOGFONT winFont;
118 GetObject(m_platformData.hfont(), sizeof(LOGFONT), &winFont);
120 winFont.lfHeight = -lroundf(scaledSize);
121 HFONT hfont = CreateFontIndirect(&winFont);

Completed in 51 milliseconds