Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/graphics/palette/
DColorCutQuantizer.java111 if (hist[color] > 0 && shouldIgnoreColor(color)) { in quantize()
219 if (!shouldIgnoreColor(swatch)) { in generateAverageColors()
450 private boolean shouldIgnoreColor(int color565) { in shouldIgnoreColor() method in ColorCutQuantizer
453 return shouldIgnoreColor(rgb, mTempHsl); in shouldIgnoreColor()
456 private boolean shouldIgnoreColor(Swatch color) { in shouldIgnoreColor() method in ColorCutQuantizer
457 return shouldIgnoreColor(color.getRgb(), color.getHsl()); in shouldIgnoreColor()
460 private boolean shouldIgnoreColor(int rgb, float[] hsl) { in shouldIgnoreColor() method in ColorCutQuantizer