Searched refs:makeRGB (Results 1 – 8 of 8) sorted by relevance
/external/webkit/Source/WebCore/platform/graphics/ |
D | Color.h | 66 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()
|
D | Color.cpp | 51 RGBA32 makeRGB(int r, int g, int b) in makeRGB() function
|
/external/webkit/Source/WebCore/platform/graphics/gtk/ |
D | ColorGtk.cpp | 29 : m_color(makeRGB(c.red >> 8, c.green >> 8, c.blue >> 8)) in Color()
|
/external/webkit/Source/WebCore/platform/android/ |
D | RenderThemeAndroid.cpp | 64 const RGBA32 selectionColor = makeRGB(181, 224, 136);
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderThemeMac.mm | 288 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]);
|
D | RenderLayer.cpp | 2417 context->setStrokeColor(Color(makeRGB(217, 217, 217)), ColorSpaceDeviceRGB); in paintResizer()
|
/external/webkit/Source/WebCore/css/ |
D | CSSParser.cpp | 4436 rgb = makeRGB(red, green, blue); in parseColor() 4565 c = makeRGB(colorValues[0], colorValues[1], colorValues[2]); in parseColorFromValue()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2006-05-10 | 7787 (WebCore::makeRGB): Rewrote using max and min. 28640 (WebCore::makeRGB):
|