Home
last modified time | relevance | path

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

/core/core/src/main/java/androidx/core/graphics/
DColorUtils.java391 public static void colorToLAB(@ColorInt int color, double @NonNull [] outLab) { in colorToLAB() argument
392 RGBToLAB(Color.red(color), Color.green(color), Color.blue(color), outLab); in colorToLAB() local
411 double @NonNull [] outLab) { in RGBToLAB() argument
413 RGBToXYZ(r, g, b, outLab); in RGBToLAB()
415 XYZToLAB(outLab[0], outLab[1], outLab[2], outLab); in RGBToLAB()
494 double @NonNull [] outLab) {
495 if (outLab.length != 3) {
501 outLab[0] = Math.max(0, 116 * y - 16);
502 outLab[1] = 500 * (x - y);
503 outLab[2] = 200 * (y - z);