HomeSort by relevance Sort by last modified time
    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/core/platform/graphics/
Color.cpp 81 static double calcHue(double temp1, double temp2, double hueVal)
113 return makeRGBA(static_cast<int>(calcHue(temp1, temp2, hue + 1.0 / 3.0) * scaleFactor),
114 static_cast<int>(calcHue(temp1, temp2, hue) * scaleFactor),
115 static_cast<int>(calcHue(temp1, temp2, hue - 1.0 / 3.0) * scaleFactor),

Completed in 39 milliseconds