commit | 3a93486a8572bf6a6277eec75b3937fad8abe6cc | [log] [tgz] |
---|---|---|
author | android-build-team Robot <[email protected]> | Thu Mar 11 03:00:41 2021 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Mar 11 03:00:41 2021 +0000 |
tree | 53d82b9db2ede35fdc2c3b628e526b7afe903467 | |
parent | 950be1899e7977abae860a744cbb5b6c93c0f0b5 [diff] | |
parent | 517f2ed17d93149403db78fa037e478dccc10740 [diff] |
Snap for 7199033 from ed41210ae4c5903a0c4ee45e722831567bd5302d to sc-release am: 517f2ed17d Original change: https://googleplex-android-review.googlesource.com/c/platform/hardware/qcom/sm7250/display/+/13833252 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I1bc3a714c711f39645d4dcd0ccc6f4d88877877a
diff --git a/sdm/libs/core/display_base.cpp b/sdm/libs/core/display_base.cpp index e328c30..642e619 100644 --- a/sdm/libs/core/display_base.cpp +++ b/sdm/libs/core/display_base.cpp
@@ -500,10 +500,10 @@ hdr_supported = (hdr_supported && hw_panel_info_.hdr_enabled); } - // Built-in displays always support HDR10+ when the target supports HDR. For non-builtins, check + // Built-in displays not support HDR10+ even the target supports HDR to comply with spec. For non-builtins, check // panel capability. if (kBuiltIn == display_type_) { - hdr_plus_supported = hdr_supported; + hdr_plus_supported = false; } else if (hdr_supported && hw_panel_info_.hdr_plus_enabled) { hdr_plus_supported = true; }