Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/com/android/internal/graphics/
H A DColorUtils.java72 private static int compositeComponent(int fgC, int fgA, int bgC, int bgA, int a) { in compositeComponent() argument
74 return ((0xFF * fgC * fgA) + (bgC * bgA * (0xFF - fgA))) / (a * 0xFF); in compositeComponent()
/aosp14/frameworks/base/core/java/com/android/internal/util/
H A DContrastColorUtil.java756 private static int compositeComponent(int fgC, int fgA, int bgC, int bgA, int a) { in compositeComponent() argument
758 return ((0xFF * fgC * fgA) + (bgC * bgA * (0xFF - fgA))) / (a * 0xFF); in compositeComponent()