Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/scrim/
H A DScrimView.java213 float tintAmount = Color.alpha(mTintColor) / 255f; in updateColorWithTint() local
215 tintAmount); in updateColorWithTint()
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/
H A DUtilities.java842 public static ColorFilter makeColorTintingColorFilter(int color, float tintAmount) {
843 if (tintAmount == 0f) {
848 ColorUtils.blendARGB(Color.WHITE, 0, tintAmount),
849 ColorUtils.blendARGB(0, color, tintAmount));
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
H A DRecentsView.java4870 private void setColorTint(float tintAmount) {
4871 mColorTint = tintAmount;
4879 if (tintAmount == 0f) {
4884 ColorUtils.setAlphaComponent(mTintingColor, (int) (255 * tintAmount)));