HomeSort by relevance Sort by last modified time
    Searched defs:cgFont (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/chromium/
CrossProcessFontLoading.h 37 typedef struct CGFont* CGFontRef;
80 CGFontRef cgFont() { return m_cgFont.get(); }
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontPlatformDataWx.cpp 163 CGFontRef FontPlatformData::cgFont() const
165 CGFontRef cgFont = 0;
167 cgFont = CTFontCopyGraphicsFont((CTFontRef)m_font->font()->OSXGetCTFont(), 0);
174 cgFont = CGFontCreateWithPlatformFont((void*)&fontRef);
176 return cgFont;
  /external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
non-kerned-drawing.cpp 55 CGFontRef cgFont = font->platformData().cgFont();
57 CGContextSetFont(cgContext, cgFont);
75 if (cgFont)
76 CGFontRelease(cgFont);
  /external/webkit/Source/WebCore/platform/graphics/
FontPlatformData.h 66 typedef struct CGFont* CGFontRef;
90 typedef struct CGFont* CGFontRef;
185 FontPlatformData(CGFontRef cgFont, float size, bool syntheticBold, bool syntheticOblique, FontOrientation orientation,
194 , m_cgFont(cgFont)
223 CGFontRef cgFont() const { return m_cgFont.get(); }
225 CGFontRef cgFont() const { return m_cgFont; }
232 CGFontRef cgFont() const { return m_cgFont.get(); }
307 // * cgFont - CGFontRef representing the input font at the specified point size.
  /external/skia/legacy/src/ports/
SkFontHost_mac_coretext.cpp 261 static SkScalar getFontScale(CGFontRef cgFont) {
262 int unitsPerEm = CGFontGetUnitsPerEm(cgFont);
345 CGFontRef cgFont = CTFontCopyGraphicsFont(fontRef, NULL);
346 AutoCFDataRelease headRef(CGFontCopyTableForTag(cgFont, 'head'));
357 CGFontRelease(cgFont);
874 * TODO: A future optimization will compute fAdjustBad once per CGFont, and
    [all...]

Completed in 229 milliseconds