Home
last modified time | relevance | path

Searched refs:hueScoreHistogram (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Launcher3/iconloaderlib/src/com/android/launcher3/icons/
DColorExtractor.java60 float[] hueScoreHistogram = mTmpHueScoreHistogram; in findDominantColorByHue() local
61 Arrays.fill(hueScoreHistogram, 0); in findDominantColorByHue()
82 if (hue < 0 || hue >= hueScoreHistogram.length) { in findDominantColorByHue()
90 hueScoreHistogram[hue] += score; in findDominantColorByHue()
91 if (hueScoreHistogram[hue] > highScore) { in findDominantColorByHue()
92 highScore = hueScoreHistogram[hue]; in findDominantColorByHue()