blob: d0d24a8738f4f8762d92cb3d1489992cfd7c7731 [file] [log] [blame]
John Reck9ce2bf72018-07-02 18:33:32 -07001/*
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#include "CanvasTransform.h"
18#include "Properties.h"
John Reck8f45d4a2018-08-15 10:17:12 -070019#include "utils/Color.h"
John Reck9ce2bf72018-07-02 18:33:32 -070020
21#include <SkColorFilter.h>
John Reck8f45d4a2018-08-15 10:17:12 -070022#include <SkGradientShader.h>
John Reck9ce2bf72018-07-02 18:33:32 -070023#include <SkPaint.h>
John Reck8f45d4a2018-08-15 10:17:12 -070024#include <SkShader.h>
John Reck339cf9b2018-07-18 16:32:27 -070025
26#include <algorithm>
27#include <cmath>
John Reck9ce2bf72018-07-02 18:33:32 -070028
John Reck8f45d4a2018-08-15 10:17:12 -070029#include <log/log.h>
John Reckf3c724f2018-09-20 13:00:04 -070030#include <SkHighContrastFilter.h>
John Reck8f45d4a2018-08-15 10:17:12 -070031
John Reck9ce2bf72018-07-02 18:33:32 -070032namespace android::uirenderer {
33
Lucas Dupin00af5272021-04-29 20:30:01 -070034SkColor makeLight(SkColor color) {
John Reck339cf9b2018-07-18 16:32:27 -070035 Lab lab = sRGBToLab(color);
36 float invertedL = std::min(110 - lab.L, 100.0f);
37 if (invertedL > lab.L) {
38 lab.L = invertedL;
39 return LabToSRGB(lab, SkColorGetA(color));
40 } else {
41 return color;
42 }
John Reck9ce2bf72018-07-02 18:33:32 -070043}
44
Lucas Dupin00af5272021-04-29 20:30:01 -070045SkColor makeDark(SkColor color) {
John Reck339cf9b2018-07-18 16:32:27 -070046 Lab lab = sRGBToLab(color);
47 float invertedL = std::min(110 - lab.L, 100.0f);
48 if (invertedL < lab.L) {
49 lab.L = invertedL;
50 return LabToSRGB(lab, SkColorGetA(color));
51 } else {
52 return color;
53 }
John Reck9ce2bf72018-07-02 18:33:32 -070054}
55
Lucas Dupin00af5272021-04-29 20:30:01 -070056SkColor transformColor(ColorTransform transform, SkColor color) {
John Reck9ce2bf72018-07-02 18:33:32 -070057 switch (transform) {
58 case ColorTransform::Light:
59 return makeLight(color);
60 case ColorTransform::Dark:
61 return makeDark(color);
62 default:
63 return color;
64 }
65}
66
Lucas Dupin00af5272021-04-29 20:30:01 -070067SkColor transformColorInverse(ColorTransform transform, SkColor color) {
68 switch (transform) {
69 case ColorTransform::Dark:
70 return makeLight(color);
71 case ColorTransform::Light:
72 return makeDark(color);
73 default:
74 return color;
75 }
76}
77
John Reck9ce2bf72018-07-02 18:33:32 -070078static void applyColorTransform(ColorTransform transform, SkPaint& paint) {
79 if (transform == ColorTransform::None) return;
80
81 SkColor newColor = transformColor(transform, paint.getColor());
82 paint.setColor(newColor);
83
John Reck8f45d4a2018-08-15 10:17:12 -070084 if (paint.getShader()) {
85 SkShader::GradientInfo info;
86 std::array<SkColor, 10> _colorStorage;
87 std::array<SkScalar, _colorStorage.size()> _offsetStorage;
88 info.fColorCount = _colorStorage.size();
89 info.fColors = _colorStorage.data();
90 info.fColorOffsets = _offsetStorage.data();
91 SkShader::GradientType type = paint.getShader()->asAGradient(&info);
John Reck8f45d4a2018-08-15 10:17:12 -070092
93 if (info.fColorCount <= 10) {
94 switch (type) {
95 case SkShader::kLinear_GradientType:
96 for (int i = 0; i < info.fColorCount; i++) {
97 info.fColors[i] = transformColor(transform, info.fColors[i]);
98 }
99 paint.setShader(SkGradientShader::MakeLinear(info.fPoint, info.fColors,
100 info.fColorOffsets, info.fColorCount,
101 info.fTileMode, info.fGradientFlags, nullptr));
102 break;
103 default:break;
104 }
105
106 }
107 }
108
John Reck9ce2bf72018-07-02 18:33:32 -0700109 if (paint.getColorFilter()) {
110 SkBlendMode mode;
111 SkColor color;
112 // TODO: LRU this or something to avoid spamming new color mode filters
Mike Reed2ee37432019-04-26 09:22:13 -0400113 if (paint.getColorFilter()->asAColorMode(&color, &mode)) {
John Reck9ce2bf72018-07-02 18:33:32 -0700114 color = transformColor(transform, color);
Mike Reed1c2f5fc2019-04-10 16:57:52 -0400115 paint.setColorFilter(SkColorFilters::Blend(color, mode));
John Reck9ce2bf72018-07-02 18:33:32 -0700116 }
117 }
118}
119
John Reck08ee8152018-09-20 16:27:46 -0700120static BitmapPalette paletteForColorHSV(SkColor color) {
121 float hsv[3];
122 SkColorToHSV(color, hsv);
123 return hsv[2] >= .5f ? BitmapPalette::Light : BitmapPalette::Dark;
124}
125
126static BitmapPalette filterPalette(const SkPaint* paint, BitmapPalette palette) {
127 if (palette == BitmapPalette::Unknown || !paint || !paint->getColorFilter()) {
128 return palette;
129 }
130
131 SkColor color = palette == BitmapPalette::Light ? SK_ColorWHITE : SK_ColorBLACK;
132 color = paint->getColorFilter()->filterColor(color);
133 return paletteForColorHSV(color);
134}
135
John Reck8f45d4a2018-08-15 10:17:12 -0700136bool transformPaint(ColorTransform transform, SkPaint* paint) {
137 // TODO
138 applyColorTransform(transform, *paint);
139 return true;
John Reck9ce2bf72018-07-02 18:33:32 -0700140}
141
John Reckf3c724f2018-09-20 13:00:04 -0700142bool transformPaint(ColorTransform transform, SkPaint* paint, BitmapPalette palette) {
John Reck08ee8152018-09-20 16:27:46 -0700143 palette = filterPalette(paint, palette);
John Reckf3c724f2018-09-20 13:00:04 -0700144 bool shouldInvert = false;
145 if (palette == BitmapPalette::Light && transform == ColorTransform::Dark) {
146 shouldInvert = true;
147 }
148 if (palette == BitmapPalette::Dark && transform == ColorTransform::Light) {
149 shouldInvert = true;
150 }
151 if (shouldInvert) {
152 SkHighContrastConfig config;
153 config.fInvertStyle = SkHighContrastConfig::InvertStyle::kInvertLightness;
154 paint->setColorFilter(SkHighContrastFilter::Make(config)->makeComposed(paint->refColorFilter()));
155 }
156 return shouldInvert;
157}
158
Chris Blume7b8a8082018-11-30 15:51:58 -0800159} // namespace android::uirenderer