Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/platform/graphics/
DColor.cpp56 RGBA32 makeRGBA(int r, int g, int b, int a) in makeRGBA() function
105 return makeRGBA(greyValue, greyValue, greyValue, static_cast<int>(alpha * scaleFactor)); in makeRGBAFromHSLA()
111 return makeRGBA(static_cast<int>(calcHue(temp1, temp2, hue + 1.0 / 3.0) * scaleFactor), in makeRGBAFromHSLA()
123 return makeRGBA(r, g, b, static_cast<float>(nextafter(256, 0) * a)); in makeRGBAFromCMYKA()
401 rgba = makeRGBA(((pixelColor & 0x00FF0000) >> 16) * 255 / alpha, in colorFromPremultipliedARGB()
DColor.h67 RGBA32 makeRGBA(int r, int g, int b, int a);
87 Color(int r, int g, int b, int a) : m_color(makeRGBA(r, g, b, a)), m_valid(true) { } in Color()
/external/webkit/Source/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/Source/WebCore/platform/graphics/haiku/
DColorHaiku.cpp36 : m_color(makeRGBA(color.red, color.green, color.blue, color.alpha)) in Color()
/external/webkit/Source/WebCore/platform/graphics/qt/
DColorQt.cpp36 : m_color(makeRGBA(c.red(), c.green(), c.blue(), c.alpha())) in Color()
/external/webkit/Source/WebCore/platform/graphics/gtk/
DColorGtk.cpp36 : m_color(makeRGBA(static_cast<int>(c.red * 255), in Color()
/external/webkit/Source/WebCore/platform/graphics/cg/
DColorCG.cpp69 m_color = makeRGBA(r * 255, g * 255, b * 255, a * 255); in Color()
/external/webkit/Source/WebCore/platform/graphics/mac/
DColorMac.mm61 return makeRGBA(255 * redComponent, 255 * greenComponent, 255 * blueComponent, 255 * alpha);
/external/webkit/Source/WebCore/platform/mac/
DDragDataMac.mm108 …return makeRGBA((int)([color redComponent] * 255.0 + 0.5), (int)([color greenComponent] * 255.0 + …
DDragImageMac.mm205 …graphicsContext.setFillColor(makeRGBA(red * 255, green * 255, blue * 255, alpha * 255), ColorSpace…
/external/webkit/Source/WebKit/mac/Misc/
DWebKitNSStringExtras.mm100 …graphicsContext.setFillColor(makeRGBA(red * 255, green * 255, blue * 255, alpha * 255), ColorSpace…
/external/webkit/Source/WebCore/platform/graphics/cairo/
DGraphicsContextCairo.cpp611 color.setRGB(makeRGBA(color.red(), color.green(), color.blue(), 127)); in adjustFocusRingColor()
/external/webkit/Source/WebCore/rendering/
DRenderThemeSafari.cpp109 …return makeRGBA(255 * components[0], 255 * components[1], 255 * components[2], 255 * components[3]… in makeRGBAFromCGColor()
/external/webkit/Source/WebKit/qt/Api/
Dqwebpage.cpp1076 …tart, (a.start + a.length)), qMax(a.start, (a.start + a.length)), Color(makeRGBA(qcolor.red(), qco… in inputMethodEvent()
1085 …caretRenderer->style()->setColor(Color(makeRGBA(qcolor.red(), qcolor.green(), qcolor.blue(), qcolo… in inputMethodEvent()
/external/webkit/Source/WebCore/css/
DCSSParser.cpp4417 rgb = makeRGBA(red, green, blue, alpha); in parseColor()
4574 c = makeRGBA(colorValues[0], colorValues[1], colorValues[2], colorValues[3]); in parseColorFromValue()
/external/webkit/Source/WebCore/
DChangeLog-2006-05-107788 (WebCore::makeRGBA): Ditto.
28641 (WebCore::makeRGBA):