From cdcfd0573653d16a46b45c47541c6e7256a8e0ed Mon Sep 17 00:00:00 2001 From: Alec Mouri Date: Thu, 20 Jul 2023 22:43:18 +0000 Subject: [PATCH] Fix a DimmingStage documentation typo by rewording the doc. Change-Id: I5a1b3a99630cfded4b34c74b020bb4df2ce12084 --- .../ClientTargetPropertyWithBrightness.aidl | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/graphics/composer/aidl/android/hardware/graphics/composer3/ClientTargetPropertyWithBrightness.aidl b/graphics/composer/aidl/android/hardware/graphics/composer3/ClientTargetPropertyWithBrightness.aidl index ba6fe97c3d..18b219ce05 100644 --- a/graphics/composer/aidl/android/hardware/graphics/composer3/ClientTargetPropertyWithBrightness.aidl +++ b/graphics/composer/aidl/android/hardware/graphics/composer3/ClientTargetPropertyWithBrightness.aidl @@ -40,14 +40,12 @@ parcelable ClientTargetPropertyWithBrightness { /** * The stage in which dimming operations should be performed when compositing * the client target. + * * Note that with a COLORIMETRIC RenderIntent, DimmingSpace must be LINEAR. That is, dimming - * is defined to occur in linear space. - * However, some composer implementations may, with other vendor-defined RenderIntents, - * configure their hardware such as image quality adjustments is intended to occur after - * composition. In this scenario, if the dimming operation were applied in linear space, - * then the resulting dimming operation may comepl those image quality adjustments to - * incorrectly alter the gamma curve. To avoid this issue, those implementations must opt to - * dim in gamma space. + * is defined to occur in linear space. However, some composer implementations may, with + * other vendor-defined RenderIntents, apply certain image quality adjustments that are + * sensitive to gamma shift when dimming in linear space. To avoid this issue, those + * implementations must opt to dim in gamma space. */ DimmingStage dimmingStage; }