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.java142 mQuantizedColors.add(new Swatch(approximateToRgb888(color), hist[color])); in quantize()
413 return new Swatch(approximateToRgb888(redMean, greenMean, blueMean), totalPopulation); in getAverageColor()
451 final int rgb = approximateToRgb888(color565); in shouldIgnoreColor()
494 static int approximateToRgb888(int r, int g, int b) { in approximateToRgb888() method in ColorCutQuantizer
500 private static int approximateToRgb888(int color) { in approximateToRgb888() method in ColorCutQuantizer
501 … return approximateToRgb888(quantizedRed(color), quantizedGreen(color), quantizedBlue(color)); in approximateToRgb888()