Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/utilities/
DUtilities.java37 float bgG = Color.green(bg) / 255f; in computeContrastBetweenColors() local
40 bgG = (bgG < 0.03928f) ? bgG / 12.92f : (float) Math.pow((bgG + 0.055f) / 1.055f, 2.4f); in computeContrastBetweenColors()
42 float bgL = 0.2126f * bgR + 0.7152f * bgG + 0.0722f * bgB; in computeContrastBetweenColors()
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/utilities/
DUtilities.java314 float bgG = Color.green(bg) / 255f; in computeContrastBetweenColors() local
317 bgG = (bgG < 0.03928f) ? bgG / 12.92f : (float) Math.pow((bgG + 0.055f) / 1.055f, 2.4f); in computeContrastBetweenColors()
319 float bgL = 0.2126f * bgR + 0.7152f * bgG + 0.0722f * bgB; in computeContrastBetweenColors()