Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/graphics/palette/
DColorCutQuantizer.java134 mQuantizedColors.add(new Swatch(approximateToRgb888(color), hist[color])); in quantize()
401 return new Swatch(approximateToRgb888(redMean, greenMean, blueMean), totalPopulation); in getAverageColor()
461 static int approximateToRgb888(int r, int g, int b) { in approximateToRgb888() method in ColorCutQuantizer
467 private static int approximateToRgb888(int color) { in approximateToRgb888() method in ColorCutQuantizer
468 return approximateToRgb888(quantizedRed(color), quantizedGreen(color), in approximateToRgb888()