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/src/ports/
SkFontHost_mac_coretext.cpp 449 CGFontRef cgFont;
455 cgFont = CTFontCopyGraphicsFont(mFont, NULL);
493 if (cgFont != NULL && cgContext != NULL) {
501 CGContextSetFont( cgContext, cgFont);
502 CGContextSetFontSize( cgContext, 1); // cgFont know's its size
533 CFSafeRelease(cgFont);
    [all...]

Completed in 73 milliseconds