Home | History | Annotate | Download | only in launcher3

Lines Matching defs:hue

418         // First get the best hue, by creating a histogram over 360 hue buckets,
436 int hue = (int) hsv[0];
437 if (hue < 0 || hue >= hueScoreHistogram.length) {
442 hueScoreHistogram[hue] += score;
443 if (hueScoreHistogram[hue] > highScore) {
444 highScore = hueScoreHistogram[hue];
445 bestHue = hue;
453 // Go back over the RGB colors that match the winning hue,
460 int hue = (int) hsv[0];
461 if (hue == bestHue) {