Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/displayservicetests/src/com/android/server/display/color/
H A DReduceBrightColorsTintControllerTest.java57 tintController.setMatrix(50); in setAndGetMatrix()
58 tintController.setActivated(true); in setAndGetMatrix()
74 tintController.setMatrix(-50); in setAndGetMatrixClampToZero()
75 tintController.setActivated(true); in setAndGetMatrixClampToZero()
91 tintController.setMatrix(120); in setAndGetMatrixClampTo100()
92 tintController.setActivated(true); in setAndGetMatrixClampTo100()
108 tintController.setMatrix(50); in returnsIdentityMatrixWhenNotActivated()
126 tintController.setMatrix(0); in getAdjustedBrightnessZeroRbcStrengthFullBrightness()
135 tintController.setMatrix(100); in getAdjustedBrightnessFullRbcStrengthFullBrightness()
144 tintController.setMatrix(0); in getAdjustedBrightnessZeroRbcStrengthLowBrightness()
[all …]
H A DGlobalSaturationTintControllerTest.java33 final GlobalSaturationTintController tintController = new GlobalSaturationTintController(); in setAndGetMatrix() local
34 tintController.setMatrix(50); in setAndGetMatrix()
35 assertThat(tintController.getMatrix()).usingTolerance(0.00001f) in setAndGetMatrix()
44 final GlobalSaturationTintController tintController = new GlobalSaturationTintController(); in resetMatrix() local
45 tintController.setMatrix(100); in resetMatrix()
48 assertThat(tintController.getMatrix()).usingTolerance(0.00001f) in resetMatrix()
/aosp14/frameworks/base/services/core/java/com/android/server/display/color/
H A DColorDisplayService.java651 tintController.cancelAnimator(); in applyTint()
655 final float[] to = tintController.getMatrix(); in applyTint()
662 tintController.setAnimator(valueAnimator); in applyTint()
696 tintController.setAnimator(null); in applyTint()
705 tintController.cancelAnimator(); in applyTintByCct()
708 final int from = tintController.getAppliedCct(); in applyTintByCct()
709 final int to = tintController.isActivated() ? tintController.getTargetCct() in applyTintByCct()
710 : tintController.getDisabledCct(); in applyTintByCct()
715 dtm.setColorMatrix(tintController.getLevel(), in applyTintByCct()
717 tintController.setAppliedCct(to); in applyTintByCct()
[all …]