Searched refs:makeRGBA (Results 1 – 12 of 12) sorted by relevance
/external/webkit/WebCore/platform/graphics/ |
D | Color.cpp | 58 RGBA32 makeRGBA(int r, int g, int b, int a) in makeRGBA() function 107 return makeRGBA(greyValue, greyValue, greyValue, static_cast<int>(alpha * scaleFactor)); in makeRGBAFromHSLA() 113 return makeRGBA(static_cast<int>(calcHue(temp1, temp2, hue + 1.0 / 3.0) * scaleFactor), in makeRGBAFromHSLA() 125 return makeRGBA(r, g, b, static_cast<float>(nextafter(256, 0) * a)); in makeRGBAFromCMYKA() 364 rgba = makeRGBA(((pixelColor & 0x00FF0000) >> 16) * 255 / alpha, in colorFromPremultipliedARGB()
|
D | Color.h | 58 RGBA32 makeRGBA(int r, int g, int b, int a); 72 Color(int r, int g, int b, int a) : m_color(makeRGBA(r, g, b, a)), m_valid(true) { } in Color()
|
/external/webkit/WebCore/platform/graphics/wx/ |
D | ColorWx.cpp | 36 m_color = makeRGBA((int)color.Red(), (int)color.Green(), (int)color.Blue(), (int)color.Alpha()); in Color()
|
/external/webkit/WebCore/platform/graphics/qt/ |
D | ColorQt.cpp | 36 : m_color(makeRGBA(c.red(), c.green(), c.blue(), c.alpha())) in Color()
|
/external/webkit/WebCore/platform/graphics/cg/ |
D | ColorCG.cpp | 67 m_color = makeRGBA(r * 255, g * 255, b * 255, a * 255); in Color()
|
/external/webkit/WebCore/svg/ |
D | SVGGradientElement.cpp | 161 …stops.append(makeGradientStop(stopOffset, makeRGBA(color.red(), color.green(), color.blue(), int(o… in buildStops()
|
/external/webkit/WebCore/platform/mac/ |
D | DragDataMac.mm | 98 …return makeRGBA((int)([color redComponent] * 255.0 + 0.5), (int)([color greenComponent] * 255.0 + …
|
/external/webkit/WebCore/platform/graphics/mac/ |
D | ColorMac.mm | 61 return makeRGBA(255 * redComponent, 255 * greenComponent, 255 * blueComponent, 255 * alpha);
|
/external/webkit/WebKit/mac/Misc/ |
D | WebKitNSStringExtras.mm | 96 graphicsContext.setFillColor(makeRGBA(red * 255, green * 255, blue * 255, alpha * 255));
|
/external/webkit/WebCore/rendering/ |
D | RenderThemeSafari.cpp | 108 …return makeRGBA(255 * components[0], 255 * components[1], 255 * components[2], 255 * components[3]… in makeRGBAFromCGColor()
|
/external/webkit/WebCore/css/ |
D | CSSParser.cpp | 3522 c = makeRGBA(colorValues[0], colorValues[1], colorValues[2], colorValues[3]); in parseColorFromValue()
|
/external/webkit/WebCore/ |
D | ChangeLog-2006-05-10 | 7788 (WebCore::makeRGBA): Ditto. 28641 (WebCore::makeRGBA):
|