OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:calcHue
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/gfx/
color_utils.cc
29
int
calcHue
(double temp1, double temp2, double hue) {
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/
Color.cpp
79
static double
calcHue
(double temp1, double temp2, double hueVal)
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 36 milliseconds