diff options
author | Michael Bestas <mkbestas@lineageos.org> | 2021-11-22 18:56:32 +0200 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2023-08-16 15:56:54 +0800 |
commit | 985aec4fc1672f78517d21f7ab3a694319d99662 (patch) | |
tree | 493dbd43c9ec4b359a521e129b12cc077c0080c4 | |
parent | 2d896c869fa09a247083e5a1d5afa1d82c580e4b (diff) |
gs201: Set config_nightDisplayColorTemperatureCoefficients
Extracted from stock.
Change-Id: I5d69d01204b0dd86a7205eb3b16e02f97a7f3db2
-rw-r--r-- | overlay-ice/frameworks/base/core/res/res/values/config.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/overlay-ice/frameworks/base/core/res/res/values/config.xml b/overlay-ice/frameworks/base/core/res/res/values/config.xml new file mode 100644 index 00000000..3ce15eb2 --- /dev/null +++ b/overlay-ice/frameworks/base/core/res/res/values/config.xml @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +/* +** Copyright 2021, The LineageOS Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ +--> + +<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> + + <string-array name="config_nightDisplayColorTemperatureCoefficients"> + <!-- R a-coefficient --> <item>0.0</item> + <!-- R b-coefficient --> <item>0.0</item> + <!-- R y-intercept --> <item>1.0</item> + <!-- G a-coefficient --> <item>-0.000000014365268757</item> + <!-- G b-coefficient --> <item>0.000255092801250106</item> + <!-- G y-intercept --> <item>-0.064156942434907716</item> + <!-- B a-coefficient --> <item>-0.000000000910931179</item> + <!-- B b-coefficient --> <item>0.000207598323269139</item> + <!-- B y-intercept --> <item>-0.349361641294833436</item> + </string-array> + +</resources> |