Searched refs:fgA (Results 1 – 3 of 3) sorted by relevance
/frameworks/support/core-utils/java/android/support/v4/graphics/ |
D | ColorUtils.java | 66 private static int compositeComponent(int fgC, int fgA, int bgC, int bgA, int a) { in compositeComponent() argument 68 return ((0xFF * fgC * fgA) + (bgC * bgA * (0xFF - fgA))) / (a * 0xFF); in compositeComponent()
|
/frameworks/base/core/java/com/android/internal/graphics/ |
D | ColorUtils.java | 67 private static int compositeComponent(int fgC, int fgA, int bgC, int bgA, int a) { in compositeComponent() argument 69 return ((0xFF * fgC * fgA) + (bgC * bgA * (0xFF - fgA))) / (a * 0xFF); in compositeComponent()
|
/frameworks/base/core/java/com/android/internal/util/ |
D | NotificationColorUtil.java | 653 private static int compositeComponent(int fgC, int fgA, int bgC, int bgA, int a) { in compositeComponent() argument 655 return ((0xFF * fgC * fgA) + (bgC * bgA * (0xFF - fgA))) / (a * 0xFF); in compositeComponent()
|