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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
FontCacheChromiumWin.cpp 236 static HFONT createFontIndirectAndGetWinName(const String& family, LOGFONT* winfont, String* winName)
238 unsigned len = family.copyTo(winfont->lfFaceName, 0, LF_FACESIZE - 1);
239 winfont->lfFaceName[len] = '\0';
241 HFONT hfont = CreateFontIndirect(winfont);
344 static void FillLogFont(const FontDescription& fontDescription, LOGFONT* winfont)
349 winfont->lfHeight = -fontDescription.computedPixelSize();
350 winfont->lfWidth = 0;
351 winfont->lfEscapement = 0;
352 winfont->lfOrientation = 0;
353 winfont->lfUnderline = false
615 LOGFONT winfont = {0}; local
    [all...]
SimpleFontDataChromiumWin.cpp 113 LOGFONT winFont;
114 GetObject(m_platformData.hfont(), sizeof(LOGFONT), &winFont);
116 winFont.lfHeight = -lroundf(scaledSize);
117 HFONT hfont = CreateFontIndirect(&winFont);

Completed in 365 milliseconds