Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/graphics/palette/
DVariationalKMeansQuantizer.java53 private List<Palette.Swatch> mQuantizedColors; field in VariationalKMeansQuantizer
112 mQuantizedColors = new ArrayList<>(); in quantize()
124 mQuantizedColors.add(new Palette.Swatch(color, mean.getItems().size())); in quantize()
153 return mQuantizedColors; in getQuantizedColors()
DColorCutQuantizer.java77 List<Swatch> mQuantizedColors; field in ColorCutQuantizer
132 mQuantizedColors = new ArrayList<>(); in quantize()
134 mQuantizedColors.add(new Swatch(approximateToRgb888(color), hist[color])); in quantize()
143 mQuantizedColors = quantizePixels(maxColors); in quantize()
156 return mQuantizedColors; in getQuantizedColors()