Home
last modified time | relevance | path

Searched refs:CGColorRef (Results 1 – 24 of 24) sorted by relevance

/external/webkit/WebKit/win/
DWebKitGraphics.h33 typedef struct CGColor* CGColorRef; typedef
57 CGColorRef color;
63 CGColorRef shadowColor;
DWebKitGraphics.cpp89 CGColorRef color;
DChangeLog-2009-06-169138 Take advantage of the new Color constructor that takes a CGColorRef
/external/webkit/WebCore/platform/graphics/cg/
DColorCG.cpp36 Color::Color(CGColorRef color) in Color()
72 CGColorRef createCGColor(const Color& c) in createCGColor()
74 CGColorRef color = NULL; in createCGColor()
DImageCG.cpp304 CGColorRef color = CGColorCreateWithPattern(patternSpace, pattern, &alpha); in drawPattern()
DGraphicsContextCG.cpp734 CGColorRef colorCG = createCGColor(color); in setPlatformShadow()
/external/webkit/WebCore/platform/graphics/
DColor.h32 typedef struct CGColor* CGColorRef; typedef
121 Color(CGColorRef);
156 CGColorRef createCGColor(const Color&);
/external/webkit/WebKitLibraries/win/include/WebKitSystemInterface/
DWebKitSystemInterface.h35 typedef struct CGColor* CGColorRef; typedef
65 void wkDrawFocusRing(CGContextRef, CGColorRef, float radius);
/external/webkit/WebCore/platform/graphics/mac/
DColorMac.mm110 static CGColorRef CGColorFromNSColor(NSColor *color)
118 CGColorRef cgColor = CGColorCreate(deviceRGBColorSpace, components);
122 CGColorRef createCGColor(const Color& c)
DGraphicsContextMac.mm53 CGColorRef colorRef = color.isValid() ? createCGColor(color) : 0;
DGraphicsLayerCA.mm261 CGColorRef borderColor = createCGColor(color);
274 CGColorRef bgColor = createCGColor(color);
/external/skia/xcode/hostapp/
Dtest.cpp46 CGColorRef color = CGColorCreate(colorspace, components); in SkiaDraw()
/external/webkit/WebCore/platform/mac/
DWebCoreSystemInterface.h103 extern void (*wkDrawFocusRing)(CGContextRef, CGColorRef, int radius);
DWebCoreSystemInterface.mm38 void (*wkDrawFocusRing)(CGContextRef, CGColorRef, int radius);
/external/webkit/WebCore/platform/graphics/win/
DGraphicsContextCGWin.cpp134 CGColorRef colorRef = color.isValid() ? createCGColor(color) : 0; in drawFocusRing()
/external/webkit/WebKitLibraries/
DWebKitSystemInterface.h95 void WKDrawFocusRing(CGContextRef context, CGColorRef color, int radius);
/external/webkit/WebCore/svg/graphics/filters/cg/
DSVGFEHelpersCg.mm62 CGColorRef colorCG = createCGColor(c);
/external/webkit/WebCore/accessibility/mac/
DAccessibilityObjectWrapper.mm237 static CGColorRef CreateCGColorIfDifferent(NSColor* nsColor, CGColorRef existingColor)
246 // create a new CGColorRef to return
248 CGColorRef cgColor = CGColorCreate(cgColorSpace, components);
263CGColorRef existingColor = (CGColorRef) [attrString attribute:attribute atIndex:range.location eff…
264 CGColorRef cgColor = CreateCGColorIfDifferent(color, existingColor);
/external/webkit/WebCore/rendering/
DRenderThemeSafari.cpp99 SOFT_LINK_OPTIONAL(SafariTheme, STCopyThemeColor, CGColorRef, APIENTRY, (unsigned color, SafariThem…
105 static RGBA32 makeRGBAFromCGColor(CGColorRef color) in makeRGBAFromCGColor()
171 …RetainPtr<CGColorRef> color(AdoptCF, STCopyThemeColorPtr()(stFocusRingColorID, SafariTheme::Active… in platformFocusRingColor()
/external/webkit/WebCore/html/canvas/
DCanvasRenderingContext2D.cpp887 CGColorRef shadowColor = CGColorCreate(colorSpace, components); in setShadow()
/external/webkit/WebCore/
DChangeLog-2006-12-3130158 Dumped the use of CGColorRef and directly use the floating point data from
30377 Bug 10836: REGRESSION: Mac implementation of Font::drawGlyphs leaks a CGColorRef
30380 (WebCore::Font::drawComplexText): Release CGColorRef after use.
DChangeLog-2006-05-101813 a CGColorRef object.
1815 to avoid allocating a CGColorRef object.
DChangeLog-2008-08-1071378 Add a Color(CGColorRef) constructor
DChangeLog-2009-06-1645843 Color(CGColorRef) constructor.