• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2018 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package android.hardware.display;
18 
19 import android.Manifest;
20 import android.annotation.IntDef;
21 import android.annotation.IntRange;
22 import android.annotation.NonNull;
23 import android.annotation.RequiresPermission;
24 import android.annotation.SystemApi;
25 import android.annotation.SystemService;
26 import android.content.ContentResolver;
27 import android.content.Context;
28 import android.metrics.LogMaker;
29 import android.os.IBinder;
30 import android.os.RemoteException;
31 import android.os.ServiceManager;
32 import android.os.ServiceManager.ServiceNotFoundException;
33 import android.provider.Settings.Secure;
34 
35 import com.android.internal.R;
36 import com.android.internal.logging.MetricsLogger;
37 import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
38 
39 import java.lang.annotation.Retention;
40 import java.lang.annotation.RetentionPolicy;
41 import java.time.LocalTime;
42 
43 /**
44  * Manages the display's color transforms and modes.
45  *
46  * @hide
47  */
48 @SystemApi
49 @SystemService(Context.COLOR_DISPLAY_SERVICE)
50 public final class ColorDisplayManager {
51 
52     /**
53      * @hide
54      */
55     @Retention(RetentionPolicy.SOURCE)
56     @IntDef({CAPABILITY_NONE, CAPABILITY_PROTECTED_CONTENT, CAPABILITY_HARDWARE_ACCELERATION_GLOBAL,
57             CAPABILITY_HARDWARE_ACCELERATION_PER_APP})
58     public @interface CapabilityType {}
59 
60     /**
61      * The device does not support color transforms.
62      *
63      * @hide
64      */
65     @SystemApi
66     public static final int CAPABILITY_NONE = 0x0;
67     /**
68      * The device can use GPU composition on protected content (layers whose buffers are protected
69      * in the trusted memory zone).
70      *
71      * @hide
72      */
73     @SystemApi
74     public static final int CAPABILITY_PROTECTED_CONTENT = 0x1;
75     /**
76      * The device's hardware can efficiently apply transforms to the entire display.
77      *
78      * @hide
79      */
80     @SystemApi
81     public static final int CAPABILITY_HARDWARE_ACCELERATION_GLOBAL = 0x2;
82     /**
83      * The device's hardware can efficiently apply transforms to a specific Surface (window) so
84      * that apps can be transformed independently of one another.
85      *
86      * @hide
87      */
88     @SystemApi
89     public static final int CAPABILITY_HARDWARE_ACCELERATION_PER_APP = 0x4;
90 
91     /**
92      * @hide
93      */
94     @Retention(RetentionPolicy.SOURCE)
95     @IntDef({ AUTO_MODE_DISABLED, AUTO_MODE_CUSTOM_TIME, AUTO_MODE_TWILIGHT })
96     public @interface AutoMode {}
97 
98     /**
99      * Auto mode value to prevent Night display from being automatically activated. It can still
100      * be activated manually via {@link #setNightDisplayActivated(boolean)}.
101      *
102      * @see #setNightDisplayAutoMode(int)
103      *
104      * @hide
105      */
106     @SystemApi
107     public static final int AUTO_MODE_DISABLED = 0;
108     /**
109      * Auto mode value to automatically activate Night display at a specific start and end time.
110      *
111      * @see #setNightDisplayAutoMode(int)
112      * @see #setNightDisplayCustomStartTime(LocalTime)
113      * @see #setNightDisplayCustomEndTime(LocalTime)
114      *
115      * @hide
116      */
117     @SystemApi
118     public static final int AUTO_MODE_CUSTOM_TIME = 1;
119     /**
120      * Auto mode value to automatically activate Night display from sunset to sunrise.
121      *
122      * @see #setNightDisplayAutoMode(int)
123      *
124      * @hide
125      */
126     @SystemApi
127     public static final int AUTO_MODE_TWILIGHT = 2;
128 
129     /**
130      * @hide
131      */
132     @Retention(RetentionPolicy.SOURCE)
133     @IntDef({COLOR_MODE_NATURAL, COLOR_MODE_BOOSTED, COLOR_MODE_SATURATED, COLOR_MODE_AUTOMATIC})
134     public @interface ColorMode {}
135 
136     /**
137      * Color mode with natural colors.
138      *
139      * @hide
140      * @see #setColorMode(int)
141      */
142     public static final int COLOR_MODE_NATURAL = 0;
143     /**
144      * Color mode with boosted colors.
145      *
146      * @hide
147      * @see #setColorMode(int)
148      */
149     public static final int COLOR_MODE_BOOSTED = 1;
150     /**
151      * Color mode with saturated colors.
152      *
153      * @hide
154      * @see #setColorMode(int)
155      */
156     public static final int COLOR_MODE_SATURATED = 2;
157     /**
158      * Color mode with automatic colors.
159      *
160      * @hide
161      * @see #setColorMode(int)
162      */
163     public static final int COLOR_MODE_AUTOMATIC = 3;
164 
165     /**
166      * Display color mode range reserved for vendor customizations by the RenderIntent definition in
167      * hardware/interfaces/graphics/common/1.1/types.hal. These are NOT directly related to (but ARE
168      * mutually exclusive with) the {@link ColorMode} constants, but ARE directly related (and ARE
169      * mutually exclusive with) the DISPLAY_COLOR_* constants in DisplayTransformManager.
170      *
171      * @hide
172      */
173     public static final int VENDOR_COLOR_MODE_RANGE_MIN = 256; // 0x100
174     /**
175      * @hide
176      */
177     public static final int VENDOR_COLOR_MODE_RANGE_MAX = 511; // 0x1ff
178 
179     private final ColorDisplayManagerInternal mManager;
180     private MetricsLogger mMetricsLogger;
181 
182     /**
183      * @hide
184      */
ColorDisplayManager()185     public ColorDisplayManager() {
186         mManager = ColorDisplayManagerInternal.getInstance();
187     }
188 
189     /**
190      * (De)activates the night display transform.
191      *
192      * @hide
193      */
194     @RequiresPermission(android.Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
setNightDisplayActivated(boolean activated)195     public boolean setNightDisplayActivated(boolean activated) {
196         return mManager.setNightDisplayActivated(activated);
197     }
198 
199     /**
200      * Returns whether the night display transform is currently active.
201      *
202      * @hide
203      */
isNightDisplayActivated()204     public boolean isNightDisplayActivated() {
205         return mManager.isNightDisplayActivated();
206     }
207 
208     /**
209      * Sets the color temperature of the night display transform.
210      *
211      * @hide
212      */
213     @RequiresPermission(android.Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
setNightDisplayColorTemperature(int temperature)214     public boolean setNightDisplayColorTemperature(int temperature) {
215         return mManager.setNightDisplayColorTemperature(temperature);
216     }
217 
218     /**
219      * Gets the color temperature of the night display transform.
220      *
221      * @hide
222      */
getNightDisplayColorTemperature()223     public int getNightDisplayColorTemperature() {
224         return mManager.getNightDisplayColorTemperature();
225     }
226 
227     /**
228      * Returns the current auto mode value controlling when Night display will be automatically
229      * activated. One of {@link #AUTO_MODE_DISABLED}, {@link #AUTO_MODE_CUSTOM_TIME}, or
230      * {@link #AUTO_MODE_TWILIGHT}.
231      *
232      * @hide
233      */
234     @SystemApi
235     @RequiresPermission(Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
getNightDisplayAutoMode()236     public @AutoMode int getNightDisplayAutoMode() {
237         return mManager.getNightDisplayAutoMode();
238     }
239 
240     /**
241      * Returns the current auto mode value, without validation, or {@code 1} if the auto mode has
242      * never been set.
243      *
244      * @hide
245      */
getNightDisplayAutoModeRaw()246     public int getNightDisplayAutoModeRaw() {
247         return mManager.getNightDisplayAutoModeRaw();
248     }
249 
250     /**
251      * Sets the current auto mode value controlling when Night display will be automatically
252      * activated. One of {@link #AUTO_MODE_DISABLED}, {@link #AUTO_MODE_CUSTOM_TIME}, or
253      * {@link #AUTO_MODE_TWILIGHT}.
254      *
255      * @param autoMode the new auto mode to use
256      * @return {@code true} if new auto mode was set successfully
257      *
258      * @hide
259      */
260     @SystemApi
261     @RequiresPermission(Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
setNightDisplayAutoMode(@utoMode int autoMode)262     public boolean setNightDisplayAutoMode(@AutoMode int autoMode) {
263         if (autoMode != AUTO_MODE_DISABLED
264                 && autoMode != AUTO_MODE_CUSTOM_TIME
265                 && autoMode != AUTO_MODE_TWILIGHT) {
266             throw new IllegalArgumentException("Invalid autoMode: " + autoMode);
267         }
268         if (mManager.getNightDisplayAutoMode() != autoMode) {
269             getMetricsLogger().write(new LogMaker(
270                     MetricsEvent.ACTION_NIGHT_DISPLAY_AUTO_MODE_CHANGED)
271                     .setType(MetricsEvent.TYPE_ACTION)
272                     .setSubtype(autoMode));
273         }
274         return mManager.setNightDisplayAutoMode(autoMode);
275     }
276 
277     /**
278      * Returns the local time when Night display will be automatically activated when using
279      * {@link ColorDisplayManager#AUTO_MODE_CUSTOM_TIME}.
280      *
281      * @hide
282      */
getNightDisplayCustomStartTime()283     public @NonNull LocalTime getNightDisplayCustomStartTime() {
284         return mManager.getNightDisplayCustomStartTime().getLocalTime();
285     }
286 
287     /**
288      * Sets the local time when Night display will be automatically activated when using
289      * {@link ColorDisplayManager#AUTO_MODE_CUSTOM_TIME}.
290      *
291      * @param startTime the local time to automatically activate Night display
292      * @return {@code true} if the new custom start time was set successfully
293      *
294      * @hide
295      */
296     @SystemApi
297     @RequiresPermission(Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
setNightDisplayCustomStartTime(@onNull LocalTime startTime)298     public boolean setNightDisplayCustomStartTime(@NonNull LocalTime startTime) {
299         if (startTime == null) {
300             throw new IllegalArgumentException("startTime cannot be null");
301         }
302         getMetricsLogger().write(new LogMaker(
303                 MetricsEvent.ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED)
304                 .setType(MetricsEvent.TYPE_ACTION)
305                 .setSubtype(0));
306         return mManager.setNightDisplayCustomStartTime(new Time(startTime));
307     }
308 
309     /**
310      * Returns the local time when Night display will be automatically deactivated when using
311      * {@link #AUTO_MODE_CUSTOM_TIME}.
312      *
313      * @hide
314      */
getNightDisplayCustomEndTime()315     public @NonNull LocalTime getNightDisplayCustomEndTime() {
316         return mManager.getNightDisplayCustomEndTime().getLocalTime();
317     }
318 
319     /**
320      * Sets the local time when Night display will be automatically deactivated when using
321      * {@link #AUTO_MODE_CUSTOM_TIME}.
322      *
323      * @param endTime the local time to automatically deactivate Night display
324      * @return {@code true} if the new custom end time was set successfully
325      *
326      * @hide
327      */
328     @SystemApi
329     @RequiresPermission(Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
setNightDisplayCustomEndTime(@onNull LocalTime endTime)330     public boolean setNightDisplayCustomEndTime(@NonNull LocalTime endTime) {
331         if (endTime == null) {
332             throw new IllegalArgumentException("endTime cannot be null");
333         }
334         getMetricsLogger().write(new LogMaker(
335                 MetricsEvent.ACTION_NIGHT_DISPLAY_AUTO_MODE_CUSTOM_TIME_CHANGED)
336                 .setType(MetricsEvent.TYPE_ACTION)
337                 .setSubtype(1));
338         return mManager.setNightDisplayCustomEndTime(new Time(endTime));
339     }
340 
341     /**
342      * Sets the current display color mode.
343      *
344      * @hide
345      */
setColorMode(int colorMode)346     public void setColorMode(int colorMode) {
347         mManager.setColorMode(colorMode);
348     }
349 
350     /**
351      * Gets the current display color mode.
352      *
353      * @hide
354      */
getColorMode()355     public int getColorMode() {
356         return mManager.getColorMode();
357     }
358 
359     /**
360      * Returns whether the specified color mode is part of the standard set.
361      *
362      * @hide
363      */
isStandardColorMode(int mode)364     public static boolean isStandardColorMode(int mode) {
365         return mode == ColorDisplayManager.COLOR_MODE_NATURAL
366                 || mode == ColorDisplayManager.COLOR_MODE_BOOSTED
367                 || mode == ColorDisplayManager.COLOR_MODE_SATURATED
368                 || mode == ColorDisplayManager.COLOR_MODE_AUTOMATIC;
369     }
370 
371     /**
372      * Returns whether the device has a wide color gamut display.
373      *
374      * @hide
375      */
376     @RequiresPermission(Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
isDeviceColorManaged()377     public boolean isDeviceColorManaged() {
378         return mManager.isDeviceColorManaged();
379     }
380 
381     /**
382      * Set the level of color saturation to apply to the display.
383      *
384      * @param saturationLevel 0-100 (inclusive), where 100 is full saturation
385      * @return whether the saturation level change was applied successfully
386      * @hide
387      */
388     @SystemApi
389     @RequiresPermission(Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
setSaturationLevel(@ntRangefrom = 0, to = 100) int saturationLevel)390     public boolean setSaturationLevel(@IntRange(from = 0, to = 100) int saturationLevel) {
391         return mManager.setSaturationLevel(saturationLevel);
392     }
393 
394     /**
395      * Gets whether or not a non-default saturation level is currently applied to the display.
396      *
397      * @return {@code true} if the display is not at full saturation
398      * @hide
399      */
400     @RequiresPermission(Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
isSaturationActivated()401     public boolean isSaturationActivated() {
402         return mManager.isSaturationActivated();
403     }
404 
405     /**
406      * Set the level of color saturation to apply to a specific app.
407      *
408      * @param packageName the package name of the app whose windows should be desaturated
409      * @param saturationLevel 0-100 (inclusive), where 100 is full saturation
410      * @return whether the saturation level change was applied successfully
411      * @hide
412      */
413     @SystemApi
414     @RequiresPermission(Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
setAppSaturationLevel(@onNull String packageName, @IntRange(from = 0, to = 100) int saturationLevel)415     public boolean setAppSaturationLevel(@NonNull String packageName,
416             @IntRange(from = 0, to = 100) int saturationLevel) {
417         return mManager.setAppSaturationLevel(packageName, saturationLevel);
418     }
419 
420     /**
421      * Enables or disables display white balance.
422      *
423      * @hide
424      */
425     @RequiresPermission(android.Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
setDisplayWhiteBalanceEnabled(boolean enabled)426     public boolean setDisplayWhiteBalanceEnabled(boolean enabled) {
427         return mManager.setDisplayWhiteBalanceEnabled(enabled);
428     }
429 
430     /**
431      * Returns whether display white balance is currently enabled. Even if enabled, it may or may
432      * not be active, if another transform with higher priority is active.
433      *
434      * @hide
435      */
isDisplayWhiteBalanceEnabled()436     public boolean isDisplayWhiteBalanceEnabled() {
437         return mManager.isDisplayWhiteBalanceEnabled();
438     }
439 
440     /**
441      * Enables or disables reduce bright colors.
442      *
443      * @hide
444      */
445     @RequiresPermission(android.Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
setReduceBrightColorsActivated(boolean activated)446     public boolean setReduceBrightColorsActivated(boolean activated) {
447         return mManager.setReduceBrightColorsActivated(activated);
448     }
449 
450     /**
451      * Returns whether reduce bright colors is currently enabled.
452      *
453      * @hide
454      */
isReduceBrightColorsActivated()455     public boolean isReduceBrightColorsActivated() {
456         return mManager.isReduceBrightColorsActivated();
457     }
458 
459     /**
460      * Set the strength level of bright color reduction to apply to the display.
461      *
462      * @param strength 0-100 (inclusive), where 100 is full strength
463      * @return whether the change was applied successfully
464      * @hide
465      */
466     @RequiresPermission(Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
setReduceBrightColorsStrength(@ntRangefrom = 0, to = 100) int strength)467     public boolean setReduceBrightColorsStrength(@IntRange(from = 0, to = 100) int strength) {
468         return mManager.setReduceBrightColorsStrength(strength);
469     }
470 
471     /**
472      * Gets the strength of the bright color reduction transform.
473      *
474      * @hide
475      */
getReduceBrightColorsStrength()476     public int getReduceBrightColorsStrength() {
477         return mManager.getReduceBrightColorsStrength();
478     }
479 
480     /**
481      * Gets the brightness impact of the bright color reduction transform, as in the factor by which
482      * the current brightness (in nits) should be multiplied to obtain the brightness offset 'b'.
483      *
484      * @hide
485      */
getReduceBrightColorsOffsetFactor()486     public float getReduceBrightColorsOffsetFactor() {
487         return mManager.getReduceBrightColorsOffsetFactor();
488     }
489 
490     /**
491      * Returns {@code true} if Night Display is supported by the device.
492      *
493      * @hide
494      */
isNightDisplayAvailable(Context context)495     public static boolean isNightDisplayAvailable(Context context) {
496         return context.getResources().getBoolean(R.bool.config_nightDisplayAvailable);
497     }
498 
499     /**
500      * Returns the minimum allowed color temperature (in Kelvin) to tint the display when
501      * activated.
502      *
503      * @hide
504      */
getMinimumColorTemperature(Context context)505     public static int getMinimumColorTemperature(Context context) {
506         return context.getResources()
507                 .getInteger(R.integer.config_nightDisplayColorTemperatureMin);
508     }
509 
510     /**
511      * Returns the maximum allowed color temperature (in Kelvin) to tint the display when
512      * activated.
513      *
514      * @hide
515      */
getMaximumColorTemperature(Context context)516     public static int getMaximumColorTemperature(Context context) {
517         return context.getResources()
518                 .getInteger(R.integer.config_nightDisplayColorTemperatureMax);
519     }
520 
521     /**
522      * Returns {@code true} if display white balance is supported by the device.
523      *
524      * @hide
525      */
isDisplayWhiteBalanceAvailable(Context context)526     public static boolean isDisplayWhiteBalanceAvailable(Context context) {
527         return context.getResources().getBoolean(R.bool.config_displayWhiteBalanceAvailable);
528     }
529 
530     /**
531      * Returns {@code true} if reduce bright colors is supported by the device.
532      *
533      * @hide
534      */
isReduceBrightColorsAvailable(Context context)535     public static boolean isReduceBrightColorsAvailable(Context context) {
536         return context.getResources().getBoolean(R.bool.config_reduceBrightColorsAvailable);
537     }
538 
539     /**
540      * Returns the minimum allowed brightness reduction strength in percentage when activated.
541      *
542      * @hide
543      */
getMinimumReduceBrightColorsStrength(Context context)544     public static int getMinimumReduceBrightColorsStrength(Context context) {
545         return context.getResources()
546                 .getInteger(R.integer.config_reduceBrightColorsStrengthMin);
547     }
548 
549     /**
550      * Returns the maximum allowed brightness reduction strength in percentage when activated.
551      *
552      * @hide
553      */
getMaximumReduceBrightColorsStrength(Context context)554     public static int getMaximumReduceBrightColorsStrength(Context context) {
555         return context.getResources()
556                 .getInteger(R.integer.config_reduceBrightColorsStrengthMax);
557     }
558 
559     /**
560      * Check if the color transforms are color accelerated. Some transforms are experimental only
561      * on non-accelerated platforms due to the performance implications.
562      *
563      * @hide
564      */
isColorTransformAccelerated(Context context)565     public static boolean isColorTransformAccelerated(Context context) {
566         return context.getResources().getBoolean(R.bool.config_setColorTransformAccelerated);
567     }
568 
569     /**
570      * Returns the available software and hardware color transform capabilities of this device.
571      *
572      * @hide
573      */
574     @SystemApi
575     @RequiresPermission(Manifest.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS)
getTransformCapabilities()576     public @CapabilityType int getTransformCapabilities() {
577         return mManager.getTransformCapabilities();
578     }
579 
580     /**
581      * Returns whether accessibility transforms are currently enabled, which determines whether
582      * color modes are currently configurable for this device.
583      *
584      * @hide
585      */
areAccessibilityTransformsEnabled(Context context)586     public static boolean areAccessibilityTransformsEnabled(Context context) {
587         final ContentResolver cr = context.getContentResolver();
588         return Secure.getInt(cr, Secure.ACCESSIBILITY_DISPLAY_INVERSION_ENABLED, 0) == 1
589                 || Secure.getInt(cr, Secure.ACCESSIBILITY_DISPLAY_DALTONIZER_ENABLED, 0) == 1;
590     }
591 
getMetricsLogger()592     private MetricsLogger getMetricsLogger() {
593         if (mMetricsLogger == null) {
594             mMetricsLogger = new MetricsLogger();
595         }
596         return mMetricsLogger;
597     }
598 
599     private static class ColorDisplayManagerInternal {
600 
601         private static ColorDisplayManagerInternal sInstance;
602 
603         private final IColorDisplayManager mCdm;
604 
ColorDisplayManagerInternal(IColorDisplayManager colorDisplayManager)605         private ColorDisplayManagerInternal(IColorDisplayManager colorDisplayManager) {
606             mCdm = colorDisplayManager;
607         }
608 
getInstance()609         public static ColorDisplayManagerInternal getInstance() {
610             synchronized (ColorDisplayManagerInternal.class) {
611                 if (sInstance == null) {
612                     try {
613                         IBinder b = ServiceManager.getServiceOrThrow(Context.COLOR_DISPLAY_SERVICE);
614                         sInstance = new ColorDisplayManagerInternal(
615                                 IColorDisplayManager.Stub.asInterface(b));
616                     } catch (ServiceNotFoundException e) {
617                         throw new IllegalStateException(e);
618                     }
619                 }
620                 return sInstance;
621             }
622         }
623 
isNightDisplayActivated()624         boolean isNightDisplayActivated() {
625             try {
626                 return mCdm.isNightDisplayActivated();
627             } catch (RemoteException e) {
628                 throw e.rethrowFromSystemServer();
629             }
630         }
631 
setNightDisplayActivated(boolean activated)632         boolean setNightDisplayActivated(boolean activated) {
633             try {
634                 return mCdm.setNightDisplayActivated(activated);
635             } catch (RemoteException e) {
636                 throw e.rethrowFromSystemServer();
637             }
638         }
639 
getNightDisplayColorTemperature()640         int getNightDisplayColorTemperature() {
641             try {
642                 return mCdm.getNightDisplayColorTemperature();
643             } catch (RemoteException e) {
644                 throw e.rethrowFromSystemServer();
645             }
646         }
647 
setNightDisplayColorTemperature(int temperature)648         boolean setNightDisplayColorTemperature(int temperature) {
649             try {
650                 return mCdm.setNightDisplayColorTemperature(temperature);
651             } catch (RemoteException e) {
652                 throw e.rethrowFromSystemServer();
653             }
654         }
655 
getNightDisplayAutoMode()656         int getNightDisplayAutoMode() {
657             try {
658                 return mCdm.getNightDisplayAutoMode();
659             } catch (RemoteException e) {
660                 throw e.rethrowFromSystemServer();
661             }
662         }
663 
getNightDisplayAutoModeRaw()664         int getNightDisplayAutoModeRaw() {
665             try {
666                 return mCdm.getNightDisplayAutoModeRaw();
667             } catch (RemoteException e) {
668                 throw e.rethrowFromSystemServer();
669             }
670         }
671 
setNightDisplayAutoMode(int autoMode)672         boolean setNightDisplayAutoMode(int autoMode) {
673             try {
674                 return mCdm.setNightDisplayAutoMode(autoMode);
675             } catch (RemoteException e) {
676                 throw e.rethrowFromSystemServer();
677             }
678         }
679 
getNightDisplayCustomStartTime()680         Time getNightDisplayCustomStartTime() {
681             try {
682                 return mCdm.getNightDisplayCustomStartTime();
683             } catch (RemoteException e) {
684                 throw e.rethrowFromSystemServer();
685             }
686         }
687 
setNightDisplayCustomStartTime(Time startTime)688         boolean setNightDisplayCustomStartTime(Time startTime) {
689             try {
690                 return mCdm.setNightDisplayCustomStartTime(startTime);
691             } catch (RemoteException e) {
692                 throw e.rethrowFromSystemServer();
693             }
694         }
695 
getNightDisplayCustomEndTime()696         Time getNightDisplayCustomEndTime() {
697             try {
698                 return mCdm.getNightDisplayCustomEndTime();
699             } catch (RemoteException e) {
700                 throw e.rethrowFromSystemServer();
701             }
702         }
703 
setNightDisplayCustomEndTime(Time endTime)704         boolean setNightDisplayCustomEndTime(Time endTime) {
705             try {
706                 return mCdm.setNightDisplayCustomEndTime(endTime);
707             } catch (RemoteException e) {
708                 throw e.rethrowFromSystemServer();
709             }
710         }
711 
isDeviceColorManaged()712         boolean isDeviceColorManaged() {
713             try {
714                 return mCdm.isDeviceColorManaged();
715             } catch (RemoteException e) {
716                 throw e.rethrowFromSystemServer();
717             }
718         }
719 
setSaturationLevel(int saturationLevel)720         boolean setSaturationLevel(int saturationLevel) {
721             try {
722                 return mCdm.setSaturationLevel(saturationLevel);
723             } catch (RemoteException e) {
724                 throw e.rethrowFromSystemServer();
725             }
726         }
727 
isSaturationActivated()728         boolean isSaturationActivated() {
729             try {
730                 return mCdm.isSaturationActivated();
731             } catch (RemoteException e) {
732                 throw e.rethrowFromSystemServer();
733             }
734         }
735 
setAppSaturationLevel(String packageName, int saturationLevel)736         boolean setAppSaturationLevel(String packageName, int saturationLevel) {
737             try {
738                 return mCdm.setAppSaturationLevel(packageName, saturationLevel);
739             } catch (RemoteException e) {
740                 throw e.rethrowFromSystemServer();
741             }
742         }
743 
isDisplayWhiteBalanceEnabled()744         boolean isDisplayWhiteBalanceEnabled() {
745             try {
746                 return mCdm.isDisplayWhiteBalanceEnabled();
747             } catch (RemoteException e) {
748                 throw e.rethrowFromSystemServer();
749             }
750         }
751 
setDisplayWhiteBalanceEnabled(boolean enabled)752         boolean setDisplayWhiteBalanceEnabled(boolean enabled) {
753             try {
754                 return mCdm.setDisplayWhiteBalanceEnabled(enabled);
755             } catch (RemoteException e) {
756                 throw e.rethrowFromSystemServer();
757             }
758         }
759 
isReduceBrightColorsActivated()760         boolean isReduceBrightColorsActivated() {
761             try {
762                 return mCdm.isReduceBrightColorsActivated();
763             } catch (RemoteException e) {
764                 throw e.rethrowFromSystemServer();
765             }
766         }
767 
setReduceBrightColorsActivated(boolean activated)768         boolean setReduceBrightColorsActivated(boolean activated) {
769             try {
770                 return mCdm.setReduceBrightColorsActivated(activated);
771             } catch (RemoteException e) {
772                 throw e.rethrowFromSystemServer();
773             }
774         }
775 
getReduceBrightColorsStrength()776         int getReduceBrightColorsStrength() {
777             try {
778                 return mCdm.getReduceBrightColorsStrength();
779             } catch (RemoteException e) {
780                 throw e.rethrowFromSystemServer();
781             }
782         }
783 
setReduceBrightColorsStrength(int strength)784         boolean setReduceBrightColorsStrength(int strength) {
785             try {
786                 return mCdm.setReduceBrightColorsStrength(strength);
787             } catch (RemoteException e) {
788                 throw e.rethrowFromSystemServer();
789             }
790         }
791 
getReduceBrightColorsOffsetFactor()792         float getReduceBrightColorsOffsetFactor() {
793             try {
794                 return mCdm.getReduceBrightColorsOffsetFactor();
795             } catch (RemoteException e) {
796                 throw e.rethrowFromSystemServer();
797             }
798         }
799 
getColorMode()800         int getColorMode() {
801             try {
802                 return mCdm.getColorMode();
803             } catch (RemoteException e) {
804                 throw e.rethrowFromSystemServer();
805             }
806         }
807 
setColorMode(int colorMode)808         void setColorMode(int colorMode) {
809             try {
810                 mCdm.setColorMode(colorMode);
811             } catch (RemoteException e) {
812                 throw e.rethrowFromSystemServer();
813             }
814         }
815 
getTransformCapabilities()816         int getTransformCapabilities() {
817             try {
818                 return mCdm.getTransformCapabilities();
819             } catch (RemoteException e) {
820                 throw e.rethrowFromSystemServer();
821             }
822         }
823     }
824 }
825