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

  /external/webkit/WebCore/platform/wx/wxcode/mac/carbon/
non-kerned-drawing.cpp 63 CGFontRef cgFont;
66 cgFont = CTFontCopyGraphicsFont((CTFontRef)wxfont->OSXGetCTFont(), NULL);
73 cgFont = CGFontCreateWithPlatformFont((void*)&fontRef);
76 CGContextSetFont(cgContext, cgFont);
104 CGFontGetGlyphsForUnichars(cgFont, glyphBuffer.glyphs(from), glyphs, numGlyphs);
113 if (cgFont)
114 CGFontRelease(cgFont);
  /external/webkit/WebCore/platform/graphics/mac/
FontPlatformData.h 35 typedef struct CGFont* CGFontRef;
69 FontPlatformData(CGFontRef cgFont, ATSUFontID fontID, float size, bool syntheticBold, bool syntheticOblique)
75 , m_cgFont(cgFont)
118 CGFontRef cgFont() const { return m_cgFont.get(); }
120 CGFontRef cgFont() const { return m_cgFont; }
  /external/webkit/WebCore/platform/graphics/win/
FontPlatformData.h 37 typedef struct CGFont* CGFontRef;
79 CGFontRef cgFont() const { return m_cgFont.get(); }
FontCustomPlatformData.cpp 92 RetainPtr<CGFontRef> cgFont(AdoptCF, CGFontCreateWithPlatformFont(&logFont));
93 return FontPlatformData(hfont, cgFont.get(), size, bold, italic, renderingMode == AlternateRenderingMode);
199 RetainPtr<CGFontRef> cgFont;
204 cgFont.adoptCF(CGFontCreateWithDataProvider(dataProvider.get()));
205 if (!cgFont)
239 return new FontCustomPlatformData(cgFont.releaseRef(), fontReference, fontName);

Completed in 273 milliseconds