Home
last modified time | relevance | path

Searched refs:makeRGBA (Results 1 – 12 of 12) sorted by relevance

/external/webkit/WebCore/platform/graphics/
DColor.cpp58 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()
DColor.h58 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/
DColorWx.cpp36 m_color = makeRGBA((int)color.Red(), (int)color.Green(), (int)color.Blue(), (int)color.Alpha()); in Color()
/external/webkit/WebCore/platform/graphics/qt/
DColorQt.cpp36 : m_color(makeRGBA(c.red(), c.green(), c.blue(), c.alpha())) in Color()
/external/webkit/WebCore/platform/graphics/cg/
DColorCG.cpp67 m_color = makeRGBA(r * 255, g * 255, b * 255, a * 255); in Color()
/external/webkit/WebCore/svg/
DSVGGradientElement.cpp161 …stops.append(makeGradientStop(stopOffset, makeRGBA(color.red(), color.green(), color.blue(), int(o… in buildStops()
/external/webkit/WebCore/platform/mac/
DDragDataMac.mm98 …return makeRGBA((int)([color redComponent] * 255.0 + 0.5), (int)([color greenComponent] * 255.0 + …
/external/webkit/WebCore/platform/graphics/mac/
DColorMac.mm61 return makeRGBA(255 * redComponent, 255 * greenComponent, 255 * blueComponent, 255 * alpha);
/external/webkit/WebKit/mac/Misc/
DWebKitNSStringExtras.mm96 graphicsContext.setFillColor(makeRGBA(red * 255, green * 255, blue * 255, alpha * 255));
/external/webkit/WebCore/rendering/
DRenderThemeSafari.cpp108 …return makeRGBA(255 * components[0], 255 * components[1], 255 * components[2], 255 * components[3]… in makeRGBAFromCGColor()
/external/webkit/WebCore/css/
DCSSParser.cpp3522 c = makeRGBA(colorValues[0], colorValues[1], colorValues[2], colorValues[3]); in parseColorFromValue()
/external/webkit/WebCore/
DChangeLog-2006-05-107788 (WebCore::makeRGBA): Ditto.
28641 (WebCore::makeRGBA):