blob: 20d4c5fc957d49c713538139f68ffeccc365495e [file] [log] [blame]
Mike Klein6bfe3f52017-05-05 13:49:00 -04001/*
2 * Copyright 2017 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "gm/gm.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -04009#include "include/core/SkBlendMode.h"
10#include "include/core/SkCanvas.h"
11#include "include/core/SkColor.h"
12#include "include/core/SkFont.h"
13#include "include/core/SkPaint.h"
14#include "include/core/SkTypeface.h"
15#include "include/core/SkTypes.h"
Kevin Lubick8b741882023-10-06 11:41:38 -040016#include "tools/DecodeUtils.h"
Mike Reedbd1db412020-03-21 10:27:53 -040017#include "tools/Resources.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050018#include "tools/ToolUtils.h"
Kevin Lubicke836c3a2023-10-20 06:55:35 -040019#include "tools/fonts/FontToolUtils.h"
Mike Klein6bfe3f52017-05-05 13:49:00 -040020
21// Hue, Saturation, Color, and Luminosity blend modes are oddballs.
22// They nominally convert their inputs to unpremul, then to HSL, then
23// mix-and-match H,S,and L from Src and Dst, then convert back, then premul.
24//
Mike Klein5b4e2772017-05-06 14:01:22 -040025// In practice that's slow, so instead we pick the color with the correct
26// Hue, and then (approximately) apply the other's Saturation and/or Luminosity.
27// This isn't just an optimization... it's how the modes are specified.
28//
Mike Klein6bfe3f52017-05-05 13:49:00 -040029// Each mode's name describes the Src H,S,L components to keep, taking the
30// others from Dst, where Color == Hue + Saturation. Color and Luminosity
31// are each other's complements; Hue and Saturation have no complement.
32//
Mike Klein5b4e2772017-05-06 14:01:22 -040033// All these modes were originally designed to operate on gamma-encoded values,
34// and that's what everyone's used to seeing. It's unclear wehther they make
35// any sense in a gamma-correct world. They certainly won't look at all similar.
36//
Mike Klein6bfe3f52017-05-05 13:49:00 -040037// We have had many inconsistent implementations of these modes.
38// This GM tries to demonstrate unambigously how they should work.
39//
Mike Klein5b4e2772017-05-06 14:01:22 -040040// To go along with our inconsistent implementations, there are two slightly
41// inconsistent specifications of how to perform these blends,
42// web: https://www.w3.org/TR/compositing-1/#blendingnonseparable
43// KHR: https://www.khronos.org/registry/OpenGL/extensions/KHR/KHR_blend_equation_advanced.txt
44// It looks like these are meant to be identical, but they disagree on at least ClipColor().
Mike Klein5b4e2772017-05-06 14:01:22 -040045//
Mike Kleinba8ca0a2017-05-07 00:25:16 -040046// I think the KHR version is just wrong... it produces values >1. So we use the web version.
Mike Klein5b4e2772017-05-06 14:01:22 -040047
Brian Osman788b9162020-02-07 10:36:46 -050048static float min(float r, float g, float b) { return std::min(r, std::min(g, b)); }
49static float max(float r, float g, float b) { return std::max(r, std::max(g, b)); }
Mike Klein5b4e2772017-05-06 14:01:22 -040050
51static float sat(float r, float g, float b) { return max(r,g,b) - min(r,g,b); }
52static float lum(float r, float g, float b) { return r*0.30f + g*0.59f + b*0.11f; }
53
54// The two SetSat() routines in the specs look different, but they're logically equivalent.
55// Both map the minimum channel to 0, maximum to s, and scale the middle proportionately.
56// The KHR version has done a better job at simplifying its math, so we use it here.
57static void set_sat(float* r, float* g, float* b, float s) {
Mike Kleinbc63fd42017-05-06 23:52:28 -040058 float mn = min(*r,*g,*b),
59 mx = max(*r,*g,*b);
60 auto channel = [=](float c) {
Mike Klein5b4e2772017-05-06 14:01:22 -040061 return mx == mn ? 0
62 : (c - mn) * s / (mx - mn);
63 };
64 *r = channel(*r);
65 *g = channel(*g);
66 *b = channel(*b);
67}
Mike Kleinba8ca0a2017-05-07 00:25:16 -040068static void clip_color(float* r, float* g, float* b) {
Mike Kleinbc63fd42017-05-06 23:52:28 -040069 float l = lum(*r,*g,*b),
70 mn = min(*r,*g,*b),
71 mx = max(*r,*g,*b);
72 auto clip = [=](float c) {
Mike Klein5b4e2772017-05-06 14:01:22 -040073 if (mn < 0) { c = l + (c - l) * ( l) / (l - mn); }
Mike Kleinba8ca0a2017-05-07 00:25:16 -040074 if (mx > 1) { c = l + (c - l) * (1 - l) / (mx - l); }
75 SkASSERT(-0.0001f < c); // This may end up very slightly negative...
76 SkASSERT( c <= 1);
Mike Klein5b4e2772017-05-06 14:01:22 -040077 return c;
78 };
79 *r = clip(*r);
80 *g = clip(*g);
81 *b = clip(*b);
82}
Mike Kleinba8ca0a2017-05-07 00:25:16 -040083static void set_lum(float* r, float* g, float* b, float l) {
84 float diff = l - lum(*r,*g,*b);
85 *r += diff;
86 *g += diff;
87 *b += diff;
88 clip_color(r,g,b);
Mike Klein5b4e2772017-05-06 14:01:22 -040089}
90
91
92static void hue(float dr, float dg, float db,
93 float* sr, float* sg, float* sb) {
94 // Hue of Src, Saturation and Luminosity of Dst.
95 float R = *sr,
96 G = *sg,
97 B = *sb;
98 set_sat(&R,&G,&B, sat(dr,dg,db));
99 set_lum(&R,&G,&B, lum(dr,dg,db));
100 *sr = R;
101 *sg = G;
102 *sb = B;
103}
104
105static void saturation(float dr, float dg, float db,
106 float* sr, float* sg, float* sb) {
107 // Saturation of Src, Hue and Luminosity of Dst
108 float R = dr,
109 G = dg,
110 B = db;
111 set_sat(&R,&G,&B, sat(*sr,*sg,*sb));
Mike Kleinba8ca0a2017-05-07 00:25:16 -0400112 set_lum(&R,&G,&B, lum( dr, dg, db)); // This may seem redundant, but it is not.
Mike Klein5b4e2772017-05-06 14:01:22 -0400113 *sr = R;
114 *sg = G;
115 *sb = B;
116}
117
118static void color(float dr, float dg, float db,
119 float* sr, float* sg, float* sb) {
120 // Hue and Saturation of Src, Luminosity of Dst.
121 float R = *sr,
122 G = *sg,
123 B = *sb;
124 set_lum(&R,&G,&B, lum(dr,dg,db));
125 *sr = R;
126 *sg = G;
127 *sb = B;
128}
129
130static void luminosity(float dr, float dg, float db,
131 float* sr, float* sg, float* sb) {
132 // Luminosity of Src, Hue and Saturation of Dst.
133 float R = dr,
134 G = dg,
135 B = db;
136 set_lum(&R,&G,&B, lum(*sr,*sg,*sb));
137 *sr = R;
138 *sg = G;
139 *sb = B;
140}
141
142static SkColor blend(SkColor dst, SkColor src,
Brian Osmanfbc6d7f2018-08-15 11:16:06 -0400143 void (*mode)(float,float,float, float*,float*,float*)) {
Mike Klein5b4e2772017-05-06 14:01:22 -0400144
145 SkASSERT(SkColorGetA(dst) == 0xff
146 && SkColorGetA(src) == 0xff); // Not fundamental, just simplifying for this GM.
147
Brian Osmanfbc6d7f2018-08-15 11:16:06 -0400148 SkColor4f d = SkColor4f::FromColor(dst),
149 s = SkColor4f::FromColor(src);
Mike Klein5b4e2772017-05-06 14:01:22 -0400150
Mike Kleinf484ac62017-05-06 15:44:38 -0400151 mode( d.fR, d.fG, d.fB,
152 &s.fR, &s.fG, &s.fB);
Mike Kleinf484ac62017-05-06 15:44:38 -0400153
Mike Kleinf484ac62017-05-06 15:44:38 -0400154 return s.toSkColor();
Mike Klein5b4e2772017-05-06 14:01:22 -0400155}
Mike Klein6bfe3f52017-05-05 13:49:00 -0400156
157DEF_SIMPLE_GM(hsl, canvas, 600, 100) {
Hal Canarydf2d27e2019-01-08 09:38:02 -0500158 SkPaint paint;
Kevin Lubicke836c3a2023-10-20 06:55:35 -0400159 SkFont font = ToolUtils::DefaultPortableFont();
Mike Klein6bfe3f52017-05-05 13:49:00 -0400160
Mike Kleinba8ca0a2017-05-07 00:25:16 -0400161 const char* comment = "HSL blend modes are correct when you see no circles in the squares.";
Hal Canarydf2d27e2019-01-08 09:38:02 -0500162 canvas->drawString(comment, 10,10, font, paint);
Mike Klein6bfe3f52017-05-05 13:49:00 -0400163
164 // Just to keep things reaaaal simple, we'll only use opaque colors.
165 SkPaint bg, fg;
166 bg.setColor(0xff00ff00); // Fully-saturated bright green, H = 120°, S = 100%, L = 50%.
167 fg.setColor(0xff7f3f7f); // Partly-saturated dim magenta, H = 300°, S = ~33%, L = ~37%.
168
169 struct {
170 SkBlendMode mode;
Mike Klein5b4e2772017-05-06 14:01:22 -0400171 void (*reference)(float,float,float, float*,float*,float*);
Mike Klein6bfe3f52017-05-05 13:49:00 -0400172 } tests[] = {
Mike Klein5b4e2772017-05-06 14:01:22 -0400173 { SkBlendMode::kSrc, nullptr },
174 { SkBlendMode::kDst, nullptr },
175 { SkBlendMode::kHue, hue },
176 { SkBlendMode::kSaturation, saturation },
177 { SkBlendMode::kColor, color },
178 { SkBlendMode::kLuminosity, luminosity },
Mike Klein6bfe3f52017-05-05 13:49:00 -0400179 };
180 for (auto test : tests) {
181 canvas->drawRect({20,20,80,80}, bg);
182
183 fg.setBlendMode(test.mode);
184 canvas->drawRect({20,20,80,80}, fg);
185
Mike Klein5b4e2772017-05-06 14:01:22 -0400186 if (test.reference) {
Mike Kleinba8ca0a2017-05-07 00:25:16 -0400187 SkPaint ref;
Brian Osmanfbc6d7f2018-08-15 11:16:06 -0400188 ref.setColor(blend(bg.getColor(), fg.getColor(), test.reference));
Mike Kleinba8ca0a2017-05-07 00:25:16 -0400189 canvas->drawCircle(50,50, 20, ref);
Mike Klein5b4e2772017-05-06 14:01:22 -0400190 }
Mike Klein6bfe3f52017-05-05 13:49:00 -0400191
Hal Canarydf2d27e2019-01-08 09:38:02 -0500192 canvas->drawString(SkBlendMode_Name(test.mode), 20, 90, font, paint);
Mike Klein6bfe3f52017-05-05 13:49:00 -0400193
194 canvas->translate(100,0);
195 }
196}
Mike Reedbd1db412020-03-21 10:27:53 -0400197
198#include "include/effects/SkGradientShader.h"
199
200// Trying to match sample images on https://www.w3.org/TR/compositing-1/#blendingnonseparable
201//
202static sk_sp<SkShader> make_grad(SkScalar width) {
203 SkColor colors[] = {
204 0xFF00CCCC, 0xFF0000CC, 0xFFCC00CC, 0xFFCC0000, 0xFFCCCC00, 0xFF00CC00,
205 };
206 SkPoint pts[] = {{0, 0}, {width, 0}};
207
Herb Derbyc37b3862022-06-21 09:49:17 -0400208 return SkGradientShader::MakeLinear(pts, colors, nullptr, std::size(colors),
Mike Reedbd1db412020-03-21 10:27:53 -0400209 SkTileMode::kClamp);
210}
211
212DEF_SIMPLE_GM(HSL_duck, canvas, 1110, 620) {
Kevin Lubick8b741882023-10-06 11:41:38 -0400213 auto src = ToolUtils::GetResourceAsImage("images/ducky.png");
Mike Reedbd1db412020-03-21 10:27:53 -0400214 auto dst = make_grad(src->width());
215 SkRect r = SkRect::MakeIWH(src->width(), src->height());
216
217 canvas->translate(10, 50);
218 canvas->scale(0.5f, 0.5f);
219
220 const struct {
221 SkBlendMode fMode;
222 const char* fName;
223 } recs[] = {
224 { SkBlendMode::kHue, "Hue" },
225 { SkBlendMode::kSaturation, "Saturation" },
226 { SkBlendMode::kColor, "Color" },
227 { SkBlendMode::kLuminosity, "Luminosity" },
228 };
229
Kevin Lubickbca43ec2023-10-30 10:11:22 -0400230 SkFont font = ToolUtils::DefaultPortableFont();
Mike Reedbd1db412020-03-21 10:27:53 -0400231 font.setSize(40);
232 font.setEdging(SkFont::Edging::kAntiAlias);
233
234 canvas->save();
235 for (auto [_, name] : recs) {
236 canvas->drawSimpleText(name, strlen(name), SkTextEncoding::kUTF8, 150, -20,
237 font, SkPaint());
238 canvas->translate(r.width() + 10, 0);
239 }
240 canvas->restore();
241
242 for (SkScalar src_a : {1.0f, 0.5f}) {
243 canvas->save();
244 for (auto [mode, _] : recs) {
245 SkPaint p;
246 p.setShader(dst);
247 canvas->drawRect(r, p); // bg
248
249 p.setShader(nullptr);
250 p.setBlendMode(mode);
251 p.setAlphaf(src_a);
Mike Reed8d29ab62021-01-23 18:10:39 -0500252 canvas->drawImageRect(src, r, SkSamplingOptions(), &p);
Mike Reedbd1db412020-03-21 10:27:53 -0400253
254 canvas->translate(r.width() + 10, 0);
255 }
256 SkString str;
257 str.printf("alpha %g", src_a);
258 canvas->drawSimpleText(str.c_str(), str.size(), SkTextEncoding::kUTF8, 10, r.height()/2,
259 font, SkPaint());
260
261 canvas->restore();
262 canvas->translate(0, r.height() + 10);
263 }
264}