Searched refs:outHsl (Results 1 – 1 of 1) sorted by relevance
/frameworks/support/v4/java/android/support/v4/graphics/ |
D | ColorUtils.java | 172 @NonNull float[] outHsl) { in RGBToHSL() argument 204 outHsl[0] = constrain(h, 0f, 360f); in RGBToHSL() 205 outHsl[1] = constrain(s, 0f, 1f); in RGBToHSL() 206 outHsl[2] = constrain(l, 0f, 1f); in RGBToHSL() 220 public static void colorToHSL(@ColorInt int color, @NonNull float[] outHsl) { in colorToHSL() argument 221 RGBToHSL(Color.red(color), Color.green(color), Color.blue(color), outHsl); in colorToHSL() local
|