Searched refs:calcHue (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ui/gfx/
H A Dcolor_utils.cc29 int calcHue(double temp1, double temp2, double hue) { function in namespace:color_utils::__anon16819
149 calcHue(temp1, temp2, hue + 1.0 / 3.0),
150 calcHue(temp1, temp2, hue),
151 calcHue(temp1, temp2, hue - 1.0 / 3.0));
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DColor.cpp79 static double calcHue(double temp1, double temp2, double hueVal) function in namespace:blink
111 return makeRGBA(static_cast<int>(calcHue(temp1, temp2, hue + 1.0 / 3.0) * scaleFactor),
112 static_cast<int>(calcHue(temp1, temp2, hue) * scaleFactor),
113 static_cast<int>(calcHue(temp1, temp2, hue - 1.0 / 3.0) * scaleFactor),

Completed in 295 milliseconds