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

  /external/webkit/Source/WebCore/platform/graphics/win/
FontPlatformDataWin.cpp 38 FontPlatformData::FontPlatformData(HFONT font, float size, bool bold, bool oblique, bool useGDI)
52 , m_useGDI(useGDI)
SimpleFontDataCairoWin.cpp 52 if (m_platformData.useGDI())
104 if (m_platformData.useGDI())
112 if (m_platformData.useGDI())
SimpleFontDataCGWin.cpp 59 if (m_platformData.useGDI())
119 if (!m_platformData.useGDI()) {
127 if (m_platformData.useGDI())
143 if (m_platformData.useGDI())
FontPlatformDataCGWin.cpp 117 FontPlatformData::FontPlatformData(HFONT hfont, CGFontRef font, float size, bool bold, bool oblique, bool useGDI)
127 , m_useGDI(useGDI)
SimpleFontDataWin.cpp 122 winfont.lfHeight = -lroundf(scaledSize * (m_platformData.useGDI() ? 1 : 32));
124 return new SimpleFontData(FontPlatformData(hfont, scaledSize, m_platformData.syntheticBold(), m_platformData.syntheticOblique(), m_platformData.useGDI()), isCustomFont(), false);
FontCacheWin.cpp 560 bool useGDI = fontDescription.renderingMode() == AlternateRenderingMode && !isLucidaGrande;
568 fontDescription.computedPixelSize() * (useGDI ? 1 : 32), useGDI);
574 useGDI = false; // Never use GDI for Lucida Grande.
582 FontPlatformData* result = new FontPlatformData(hfont, fontDescription.computedPixelSize(), synthesizeBold, synthesizeItalic, useGDI);
FontCGWin.cpp 330 if (font->platformData().useGDI() && !shouldUseFontSmoothing) {
356 wkSetCGContextFontRenderingStyle(cgContext, font->isSystemFont(), false, font->platformData().useGDI());
UniscribeController.cpp 268 const float cLogicalScale = fontData->platformData().useGDI() ? 1.0f : 32.0f;
  /external/webkit/Source/WebCore/platform/graphics/
FontPlatformData.h 201 FontPlatformData(HFONT, float size, bool syntheticBold, bool syntheticOblique, bool useGDI);
203 FontPlatformData(HFONT, CGFontRef, float size, bool syntheticBold, bool syntheticOblique, bool useGDI);
214 bool useGDI() const { return m_useGDI; }
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontPlatformData.h 159 bool useGDI() const;
FontPlatformDataWx.cpp 151 bool FontPlatformData::useGDI() const

Completed in 260 milliseconds