Home
last modified time | relevance | path

Searched refs:makeRGB (Results 1 – 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/
DColor.h66 RGBA32 makeRGB(int r, int g, int b);
86 Color(int r, int g, int b) : m_color(makeRGB(r, g, b)), m_valid(true) { } in Color()
115 void setRGB(int r, int g, int b) { m_color = makeRGB(r, g, b); m_valid = true; } in setRGB()
DColor.cpp51 RGBA32 makeRGB(int r, int g, int b) in makeRGB() function
/external/webkit/Source/WebCore/platform/graphics/gtk/
DColorGtk.cpp29 : m_color(makeRGB(c.red >> 8, c.green >> 8, c.blue >> 8)) in Color()
/external/webkit/Source/WebCore/platform/android/
DRenderThemeAndroid.cpp64 const RGBA32 selectionColor = makeRGB(181, 224, 136);
/external/webkit/Source/WebCore/rendering/
DRenderThemeMac.mm288 return makeRGB(static_cast<int>(scaleFactor * [colorInColorSpace redComponent]),
320 return makeRGB(pixel[0], pixel[1], pixel[2]);
348 return makeRGB(pixel[0], pixel[1], pixel[2]);
DRenderLayer.cpp2417 context->setStrokeColor(Color(makeRGB(217, 217, 217)), ColorSpaceDeviceRGB); in paintResizer()
/external/webkit/Source/WebCore/css/
DCSSParser.cpp4436 rgb = makeRGB(red, green, blue); in parseColor()
4565 c = makeRGB(colorValues[0], colorValues[1], colorValues[2]); in parseColorFromValue()
/external/webkit/Source/WebCore/
DChangeLog-2006-05-107787 (WebCore::makeRGB): Rewrote using max and min.
28640 (WebCore::makeRGB):