blob: c2e24ff8c1958ad5adf0a9c1ba7d2c6353853771 [file] [log] [blame]
Brian Osman088913a2019-12-19 15:44:56 -05001/*
2 * Copyright 2019 Google LLC
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
Brian Osman62419612020-07-22 10:19:02 -04008#include "include/core/SkBitmap.h"
Brian Osmanf72dedd2020-01-08 13:19:58 -05009#include "include/core/SkCanvas.h"
Brian Osman92aac1e2020-08-05 16:48:58 -040010#include "include/core/SkColorFilter.h"
Brian Osman269b21c2020-08-06 12:15:53 -040011#include "include/core/SkData.h"
Brian Osmanf72dedd2020-01-08 13:19:58 -050012#include "include/core/SkPaint.h"
13#include "include/core/SkSurface.h"
Brian Osmanee426f22020-01-02 11:55:24 -050014#include "include/effects/SkRuntimeEffect.h"
Robert Phillips6d344c32020-07-06 10:56:46 -040015#include "include/gpu/GrDirectContext.h"
Brian Salomon5392c942021-03-30 16:14:37 -040016#include "src/core/SkColorSpacePriv.h"
Brian Osman4f009822021-04-28 09:41:06 -040017#include "src/core/SkRuntimeEffectPriv.h"
Brian Osmand9bde072020-04-15 14:18:13 -040018#include "src/core/SkTLazy.h"
Brian Osman62419612020-07-22 10:19:02 -040019#include "src/gpu/GrColor.h"
Brian Osman70ae91f2021-06-10 14:27:53 -040020#include "src/gpu/GrDirectContextPriv.h"
Brian Osman4d571112021-04-27 09:10:10 -040021#include "src/gpu/GrFragmentProcessor.h"
Brian Osman443b5da2021-06-04 16:52:21 -040022#include "src/gpu/effects/GrSkSLFP.h"
Brian Osman088913a2019-12-19 15:44:56 -050023#include "tests/Test.h"
24
Brian Osmanf72dedd2020-01-08 13:19:58 -050025#include <algorithm>
Brian Osman8e2ef022020-09-30 13:26:43 -040026#include <thread>
Brian Osmanf72dedd2020-01-08 13:19:58 -050027
John Stiles7ce17512021-01-12 18:39:02 -050028void test_invalid_effect(skiatest::Reporter* r, const char* src, const char* expected) {
Brian Osman56ed7da2021-04-21 15:57:27 -040029 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(src));
John Stiles7ce17512021-01-12 18:39:02 -050030 REPORTER_ASSERT(r, !effect);
31 REPORTER_ASSERT(r, errorText.contains(expected),
32 "Expected error message to contain \"%s\". Actual message: \"%s\"",
33 expected, errorText.c_str());
34};
Brian Osman088913a2019-12-19 15:44:56 -050035
Brian Osman56ed7da2021-04-21 15:57:27 -040036#define EMPTY_MAIN "half4 main(float2 p) { return half4(0); }"
Brian Osman24c18522020-11-10 16:36:01 -050037
John Stiles7ce17512021-01-12 18:39:02 -050038DEF_TEST(SkRuntimeEffectInvalid_FPOnly, r) {
Brian Osman3adc0912021-05-18 10:43:08 -040039 // Features that are only allowed in .fp files (key, in uniform, ctype, when).
Brian Osman088913a2019-12-19 15:44:56 -050040 // Ensure that these fail, and the error messages contain the relevant keyword.
John Stiles7ce17512021-01-12 18:39:02 -050041 test_invalid_effect(r, "layout(key) in bool Input;" EMPTY_MAIN, "key");
42 test_invalid_effect(r, "in uniform float Input;" EMPTY_MAIN, "in uniform");
43 test_invalid_effect(r, "layout(ctype=SkRect) float4 Input;" EMPTY_MAIN, "ctype");
44 test_invalid_effect(r, "in bool Flag; "
45 "layout(when=Flag) uniform float Input;" EMPTY_MAIN, "when");
John Stiles7ce17512021-01-12 18:39:02 -050046}
Brian Osman088913a2019-12-19 15:44:56 -050047
John Stiles7ce17512021-01-12 18:39:02 -050048DEF_TEST(SkRuntimeEffectInvalid_LimitedUniformTypes, r) {
Brian Osmand18967c2021-04-01 09:56:07 -040049 // Runtime SkSL supports a limited set of uniform types. No bool, for example:
John Stiles7ce17512021-01-12 18:39:02 -050050 test_invalid_effect(r, "uniform bool b;" EMPTY_MAIN, "uniform");
John Stiles7ce17512021-01-12 18:39:02 -050051}
Brian Osman088913a2019-12-19 15:44:56 -050052
John Stiles7ce17512021-01-12 18:39:02 -050053DEF_TEST(SkRuntimeEffectInvalid_NoInVariables, r) {
Brian Osmana4b91692020-08-10 14:26:16 -040054 // 'in' variables aren't allowed at all:
John Stiles7ce17512021-01-12 18:39:02 -050055 test_invalid_effect(r, "in bool b;" EMPTY_MAIN, "'in'");
56 test_invalid_effect(r, "in float f;" EMPTY_MAIN, "'in'");
57 test_invalid_effect(r, "in float2 v;" EMPTY_MAIN, "'in'");
58 test_invalid_effect(r, "in half3x3 m;" EMPTY_MAIN, "'in'");
59}
Brian Osman8783b782020-01-06 11:13:45 -050060
John Stiles7ce17512021-01-12 18:39:02 -050061DEF_TEST(SkRuntimeEffectInvalid_UndefinedFunction, r) {
Brian Osman56ed7da2021-04-21 15:57:27 -040062 test_invalid_effect(r, "half4 missing(); half4 main(float2 p) { return missing(); }",
John Stiles7ce17512021-01-12 18:39:02 -050063 "undefined function");
64}
Brian Osman182c92e2020-07-20 15:18:33 -040065
John Stiles7ce17512021-01-12 18:39:02 -050066DEF_TEST(SkRuntimeEffectInvalid_UndefinedMain, r) {
Brian Osman182c92e2020-07-20 15:18:33 -040067 // Shouldn't be possible to create an SkRuntimeEffect without "main"
John Stiles7ce17512021-01-12 18:39:02 -050068 test_invalid_effect(r, "", "main");
69}
Brian Osman82329002020-07-21 09:39:27 -040070
John Stiles7ce17512021-01-12 18:39:02 -050071DEF_TEST(SkRuntimeEffectInvalid_SkCapsDisallowed, r) {
Brian Osmanb06301e2020-11-06 11:45:36 -050072 // sk_Caps is an internal system. It should not be visible to runtime effects
Brian Osman56ed7da2021-04-21 15:57:27 -040073 test_invalid_effect(
74 r,
75 "half4 main(float2 p) { return sk_Caps.integerSupport ? half4(1) : half4(0); }",
76 "unknown identifier 'sk_Caps'");
John Stiles7ce17512021-01-12 18:39:02 -050077}
Brian Osmanb06301e2020-11-06 11:45:36 -050078
John Stiles65d7ab22021-04-28 15:14:09 -040079DEF_TEST(SkRuntimeEffectCanDisableES2Restrictions, r) {
80 auto test_valid_es3 = [](skiatest::Reporter* r, const char* sksl) {
81 SkRuntimeEffect::Options opt;
82 opt.enforceES2Restrictions = false;
83 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(sksl), opt);
84 REPORTER_ASSERT(r, effect, "%s", errorText.c_str());
85 };
86
87 test_invalid_effect(r, "float f[2] = float[2](0, 1);" EMPTY_MAIN, "construction of array type");
88 test_valid_es3 (r, "float f[2] = float[2](0, 1);" EMPTY_MAIN);
89}
90
Brian Osmanaf4e2332021-04-20 12:00:10 -040091DEF_TEST(SkRuntimeEffectForColorFilter, r) {
92 // Tests that the color filter factory rejects or accepts certain SkSL constructs
93 auto test_valid = [r](const char* sksl) {
94 auto [effect, errorText] = SkRuntimeEffect::MakeForColorFilter(SkString(sksl));
John Stiles65d7ab22021-04-28 15:14:09 -040095 REPORTER_ASSERT(r, effect, "%s", errorText.c_str());
Brian Osmanaf4e2332021-04-20 12:00:10 -040096 };
97
98 auto test_invalid = [r](const char* sksl, const char* expected) {
99 auto [effect, errorText] = SkRuntimeEffect::MakeForColorFilter(SkString(sksl));
100 REPORTER_ASSERT(r, !effect);
101 REPORTER_ASSERT(r,
102 errorText.contains(expected),
103 "Expected error message to contain \"%s\". Actual message: \"%s\"",
104 expected,
105 errorText.c_str());
106 };
107
108 // Color filters must use the 'half4 main(half4)' signature. Either color can be float4/vec4
109 test_valid("half4 main(half4 c) { return c; }");
110 test_valid("float4 main(half4 c) { return c; }");
111 test_valid("half4 main(float4 c) { return c; }");
112 test_valid("float4 main(float4 c) { return c; }");
113 test_valid("vec4 main(half4 c) { return c; }");
114 test_valid("half4 main(vec4 c) { return c; }");
115 test_valid("vec4 main(vec4 c) { return c; }");
116
117 // Invalid return types
118 test_invalid("void main(half4 c) {}", "'main' must return");
119 test_invalid("half3 main(half4 c) { return c.rgb; }", "'main' must return");
120
121 // Invalid argument types (some are valid as shaders, but not color filters)
122 test_invalid("half4 main() { return half4(1); }", "'main' parameter");
123 test_invalid("half4 main(float2 p) { return half4(1); }", "'main' parameter");
124 test_invalid("half4 main(float2 p, half4 c) { return c; }", "'main' parameter");
125
126 // sk_FragCoord should not be available
127 test_invalid("half4 main(half4 c) { return sk_FragCoord.xy01; }", "unknown identifier");
128
129 // Sampling a child shader requires that we pass explicit coords
130 test_valid("uniform shader child;"
131 "half4 main(half4 c) { return sample(child, c.rg); }");
Brian Osmanc9125aa2021-04-21 09:57:19 -0400132 // Trying to pass a color as well. (Works internally with FPs, but not in runtime effects).
133 test_invalid("uniform shader child;"
134 "half4 main(half4 c) { return sample(child, c.rg, c); }",
135 "no match for sample(shader, half2, half4)");
Brian Osmanaf4e2332021-04-20 12:00:10 -0400136
Brian Osmanc9125aa2021-04-21 09:57:19 -0400137 // Shader with just a color
138 test_invalid("uniform shader child;"
139 "half4 main(half4 c) { return sample(child, c); }",
140 "no match for sample(shader, half4)");
John Stiles93003912021-06-16 11:34:37 -0400141 // Coords and color in a different order
Brian Osmanc9125aa2021-04-21 09:57:19 -0400142 test_invalid("uniform shader child;"
143 "half4 main(half4 c) { return sample(child, c, c.rg); }",
144 "no match for sample(shader, half4, half2)");
145
146 // Older variants that are no longer allowed
Brian Osmanaf4e2332021-04-20 12:00:10 -0400147 test_invalid(
148 "uniform shader child;"
149 "half4 main(half4 c) { return sample(child); }",
Brian Osmanc9125aa2021-04-21 09:57:19 -0400150 "no match for sample(shader)");
Brian Osmanaf4e2332021-04-20 12:00:10 -0400151 test_invalid(
152 "uniform shader child;"
153 "half4 main(half4 c) { return sample(child, float3x3(1)); }",
Brian Osmanc9125aa2021-04-21 09:57:19 -0400154 "no match for sample(shader, float3x3)");
155
156 // Sampling a colorFilter requires a color. No other signatures are valid.
157 test_valid("uniform colorFilter child;"
158 "half4 main(half4 c) { return sample(child, c); }");
159
160 test_invalid("uniform colorFilter child;"
161 "half4 main(half4 c) { return sample(child); }",
162 "sample(colorFilter)");
163 test_invalid("uniform colorFilter child;"
164 "half4 main(half4 c) { return sample(child, c.rg); }",
165 "sample(colorFilter, half2)");
166 test_invalid("uniform colorFilter child;"
167 "half4 main(half4 c) { return sample(child, c.rg, c); }",
168 "sample(colorFilter, half2, half4)");
Brian Osmanaf4e2332021-04-20 12:00:10 -0400169}
170
John Stiles93003912021-06-16 11:34:37 -0400171DEF_TEST(SkRuntimeEffectForBlender, r) {
172 // Tests that the blender factory rejects or accepts certain SkSL constructs
173 auto test_valid = [r](const char* sksl) {
174 auto [effect, errorText] = SkRuntimeEffect::MakeForBlender(SkString(sksl));
175 REPORTER_ASSERT(r, effect, "%s", errorText.c_str());
176 };
177
178 auto test_invalid = [r](const char* sksl, const char* expected) {
179 auto [effect, errorText] = SkRuntimeEffect::MakeForBlender(SkString(sksl));
180 REPORTER_ASSERT(r, !effect);
181 REPORTER_ASSERT(r,
182 errorText.contains(expected),
183 "Expected error message to contain \"%s\". Actual message: \"%s\"",
184 expected,
185 errorText.c_str());
186 };
187
188 // Color filters must use the 'half4 main(half4, half4)' signature. Any mixture of
189 // float4/vec4/half4 is allowed.
190 test_valid("half4 main(half4 s, half4 d) { return s; }");
191 test_valid("float4 main(float4 s, float4 d) { return d; }");
192 test_valid("float4 main(half4 s, float4 d) { return s; }");
193 test_valid("half4 main(float4 s, half4 d) { return d; }");
194 test_valid("vec4 main(half4 s, half4 d) { return s; }");
195 test_valid("half4 main(vec4 s, vec4 d) { return d; }");
196 test_valid("vec4 main(vec4 s, vec4 d) { return s; }");
197
198 // Invalid return types
199 test_invalid("void main(half4 s, half4 d) {}", "'main' must return");
200 test_invalid("half3 main(half4 s, half4 d) { return s.rgb; }", "'main' must return");
201
202 // Invalid argument types (some are valid as shaders/color filters)
203 test_invalid("half4 main() { return half4(1); }", "'main' parameter");
204 test_invalid("half4 main(half4 c) { return c; }", "'main' parameter");
205 test_invalid("half4 main(float2 p) { return half4(1); }", "'main' parameter");
206 test_invalid("half4 main(float2 p, half4 c) { return c; }", "'main' parameter");
207 test_invalid("half4 main(float2 p, half4 a, half4 b) { return a; }", "'main' parameter");
208 test_invalid("half4 main(half4 a, half4 b, half4 c) { return a; }", "'main' parameter");
209
210 // sk_FragCoord should not be available
211 test_invalid("half4 main(half4 s, half4 d) { return sk_FragCoord.xy01; }",
212 "unknown identifier");
213
214 // Child shaders are currently unsupported in blends
215 test_invalid("uniform shader sh; half4 main(half4 s, half4 d) { return s; }",
216 "'shader' is not allowed in runtime blend");
217 test_invalid("uniform shader sh; half4 main(half4 s, half4 d) { return sample(sh, s.rg); }",
218 "unknown identifier 'sample'");
219}
220
Brian Osmanaf4e2332021-04-20 12:00:10 -0400221DEF_TEST(SkRuntimeEffectForShader, r) {
222 // Tests that the shader factory rejects or accepts certain SkSL constructs
223 auto test_valid = [r](const char* sksl) {
224 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(sksl));
John Stiles65d7ab22021-04-28 15:14:09 -0400225 REPORTER_ASSERT(r, effect, "%s", errorText.c_str());
Brian Osmanaf4e2332021-04-20 12:00:10 -0400226 };
227
228 auto test_invalid = [r](const char* sksl, const char* expected) {
229 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(sksl));
230 REPORTER_ASSERT(r, !effect);
231 REPORTER_ASSERT(r,
232 errorText.contains(expected),
233 "Expected error message to contain \"%s\". Actual message: \"%s\"",
234 expected,
235 errorText.c_str());
236 };
237
238 // Shaders must use either the 'half4 main(float2)' or 'half4 main(float2, half4)' signature
239 // Either color can be half4/float4/vec4, but the coords must be float2/vec2
240 test_valid("half4 main(float2 p) { return p.xyxy; }");
241 test_valid("float4 main(float2 p) { return p.xyxy; }");
242 test_valid("vec4 main(float2 p) { return p.xyxy; }");
243 test_valid("half4 main(vec2 p) { return p.xyxy; }");
244 test_valid("vec4 main(vec2 p) { return p.xyxy; }");
245 test_valid("half4 main(float2 p, half4 c) { return c; }");
246 test_valid("half4 main(float2 p, float4 c) { return c; }");
247 test_valid("half4 main(float2 p, vec4 c) { return c; }");
248 test_valid("float4 main(float2 p, half4 c) { return c; }");
249 test_valid("vec4 main(float2 p, half4 c) { return c; }");
250 test_valid("vec4 main(vec2 p, vec4 c) { return c; }");
251
252 // Invalid return types
253 test_invalid("void main(float2 p) {}", "'main' must return");
254 test_invalid("half3 main(float2 p) { return p.xy1; }", "'main' must return");
255
256 // Invalid argument types (some are valid as color filters, but not shaders)
257 test_invalid("half4 main() { return half4(1); }", "'main' parameter");
258 test_invalid("half4 main(half4 c) { return c; }", "'main' parameter");
259
260 // sk_FragCoord should be available
261 test_valid("half4 main(float2 p) { return sk_FragCoord.xy01; }");
262
263 // Sampling a child shader requires that we pass explicit coords
264 test_valid("uniform shader child;"
265 "half4 main(float2 p) { return sample(child, p); }");
266
Brian Osmanc9125aa2021-04-21 09:57:19 -0400267 // Trying to pass a color as well. (Works internally with FPs, but not in runtime effects).
268 test_invalid("uniform shader child;"
269 "half4 main(float2 p, half4 c) { return sample(child, p, c); }",
270 "no match for sample(shader, float2, half4)");
271
272 // Shader with just a color
273 test_invalid("uniform shader child;"
274 "half4 main(float2 p, half4 c) { return sample(child, c); }",
275 "no match for sample(shader, half4)");
276 // Coords and color in a different order
277 test_invalid("uniform shader child;"
278 "half4 main(float2 p, half4 c) { return sample(child, c, p); }",
279 "no match for sample(shader, half4, float2)");
280
281 // Older variants that are no longer allowed
Brian Osmanaf4e2332021-04-20 12:00:10 -0400282 test_invalid(
283 "uniform shader child;"
284 "half4 main(float2 p) { return sample(child); }",
Brian Osmanc9125aa2021-04-21 09:57:19 -0400285 "no match for sample(shader)");
Brian Osmanaf4e2332021-04-20 12:00:10 -0400286 test_invalid(
287 "uniform shader child;"
288 "half4 main(float2 p) { return sample(child, float3x3(1)); }",
Brian Osmanc9125aa2021-04-21 09:57:19 -0400289 "no match for sample(shader, float3x3)");
290
291 // Sampling a colorFilter requires a color. No other signatures are valid.
292 test_valid("uniform colorFilter child;"
293 "half4 main(float2 p, half4 c) { return sample(child, c); }");
294
295 test_invalid("uniform colorFilter child;"
296 "half4 main(float2 p) { return sample(child); }",
297 "sample(colorFilter)");
298 test_invalid("uniform colorFilter child;"
299 "half4 main(float2 p) { return sample(child, p); }",
300 "sample(colorFilter, float2)");
301 test_invalid("uniform colorFilter child;"
302 "half4 main(float2 p, half4 c) { return sample(child, p, c); }",
303 "sample(colorFilter, float2, half4)");
Brian Osmanaf4e2332021-04-20 12:00:10 -0400304}
305
Brian Osmanf72dedd2020-01-08 13:19:58 -0500306class TestEffect {
307public:
Brian Osman62419612020-07-22 10:19:02 -0400308 TestEffect(skiatest::Reporter* r, sk_sp<SkSurface> surface)
309 : fReporter(r), fSurface(std::move(surface)) {}
310
Brian Osman33316412020-11-06 10:42:51 -0500311 void build(const char* src) {
Brian Osman56ed7da2021-04-21 15:57:27 -0400312 auto [effect, errorText] = SkRuntimeEffect::MakeForShader(SkString(src));
Brian Osmanf72dedd2020-01-08 13:19:58 -0500313 if (!effect) {
Brian Osman62419612020-07-22 10:19:02 -0400314 REPORT_FAILURE(fReporter, "effect",
Brian Osmanf72dedd2020-01-08 13:19:58 -0500315 SkStringPrintf("Effect didn't compile: %s", errorText.c_str()));
316 return;
317 }
Brian Osmand9bde072020-04-15 14:18:13 -0400318 fBuilder.init(std::move(effect));
Brian Osmanf72dedd2020-01-08 13:19:58 -0500319 }
320
Brian Osmana4b91692020-08-10 14:26:16 -0400321 SkRuntimeShaderBuilder::BuilderUniform uniform(const char* name) {
322 return fBuilder->uniform(name);
Brian Osmanf72dedd2020-01-08 13:19:58 -0500323 }
Brian Osman62419612020-07-22 10:19:02 -0400324 SkRuntimeShaderBuilder::BuilderChild child(const char* name) {
325 return fBuilder->child(name);
326 }
Brian Osmanf72dedd2020-01-08 13:19:58 -0500327
Brian Osman62419612020-07-22 10:19:02 -0400328 using PreTestFn = std::function<void(SkCanvas*, SkPaint*)>;
329
330 void test(GrColor TL, GrColor TR, GrColor BL, GrColor BR,
331 PreTestFn preTestCallback = nullptr) {
Brian Osmand9bde072020-04-15 14:18:13 -0400332 auto shader = fBuilder->makeShader(nullptr, false);
Brian Osmanf72dedd2020-01-08 13:19:58 -0500333 if (!shader) {
Brian Osman62419612020-07-22 10:19:02 -0400334 REPORT_FAILURE(fReporter, "shader", SkString("Effect didn't produce a shader"));
Brian Osmanf72dedd2020-01-08 13:19:58 -0500335 return;
336 }
337
Brian Osman62419612020-07-22 10:19:02 -0400338 SkCanvas* canvas = fSurface->getCanvas();
Brian Osmanf72dedd2020-01-08 13:19:58 -0500339 SkPaint paint;
340 paint.setShader(std::move(shader));
341 paint.setBlendMode(SkBlendMode::kSrc);
Brian Osmanf72dedd2020-01-08 13:19:58 -0500342
Brian Osman62419612020-07-22 10:19:02 -0400343 canvas->save();
344 if (preTestCallback) {
345 preTestCallback(canvas, &paint);
346 }
347 canvas->drawPaint(paint);
348 canvas->restore();
349
350 GrColor actual[4];
351 SkImageInfo info = fSurface->imageInfo();
352 if (!fSurface->readPixels(info, actual, info.minRowBytes(), 0, 0)) {
353 REPORT_FAILURE(fReporter, "readPixels", SkString("readPixels failed"));
Brian Osmanf72dedd2020-01-08 13:19:58 -0500354 return;
355 }
356
Brian Osman62419612020-07-22 10:19:02 -0400357 GrColor expected[4] = {TL, TR, BL, BR};
John Stilesc1c3c6d2020-08-15 23:22:53 -0400358 if (0 != memcmp(actual, expected, sizeof(actual))) {
Brian Osman62419612020-07-22 10:19:02 -0400359 REPORT_FAILURE(fReporter, "Runtime effect didn't match expectations",
Brian Osmanf72dedd2020-01-08 13:19:58 -0500360 SkStringPrintf("\n"
361 "Expected: [ %08x %08x %08x %08x ]\n"
362 "Got : [ %08x %08x %08x %08x ]\n"
363 "SkSL:\n%s\n",
364 TL, TR, BL, BR, actual[0], actual[1], actual[2],
Brian Osmanb6bd0d22020-08-27 10:51:22 -0400365 actual[3], fBuilder->effect()->source().c_str()));
Brian Osmanf72dedd2020-01-08 13:19:58 -0500366 }
367 }
368
Brian Osman62419612020-07-22 10:19:02 -0400369 void test(GrColor expected, PreTestFn preTestCallback = nullptr) {
370 this->test(expected, expected, expected, expected, preTestCallback);
Brian Osmanf72dedd2020-01-08 13:19:58 -0500371 }
372
373private:
Brian Osman62419612020-07-22 10:19:02 -0400374 skiatest::Reporter* fReporter;
375 sk_sp<SkSurface> fSurface;
Brian Osmand9bde072020-04-15 14:18:13 -0400376 SkTLazy<SkRuntimeShaderBuilder> fBuilder;
Brian Osmanf72dedd2020-01-08 13:19:58 -0500377};
378
Brian Osman62419612020-07-22 10:19:02 -0400379// Produces a 2x2 bitmap shader, with opaque colors:
380// [ Red, Green ]
381// [ Blue, White ]
382static sk_sp<SkShader> make_RGBW_shader() {
383 SkBitmap bmp;
384 bmp.allocPixels(SkImageInfo::Make(2, 2, kRGBA_8888_SkColorType, kPremul_SkAlphaType));
385 SkIRect topLeft = SkIRect::MakeWH(1, 1);
386 bmp.pixmap().erase(SK_ColorRED, topLeft);
387 bmp.pixmap().erase(SK_ColorGREEN, topLeft.makeOffset(1, 0));
388 bmp.pixmap().erase(SK_ColorBLUE, topLeft.makeOffset(0, 1));
389 bmp.pixmap().erase(SK_ColorWHITE, topLeft.makeOffset(1, 1));
Mike Reedb41bd152020-12-12 11:18:31 -0500390 return bmp.makeShader(SkSamplingOptions());
Brian Osman62419612020-07-22 10:19:02 -0400391}
392
Robert Phillipse94b4e12020-07-23 13:54:35 -0400393static void test_RuntimeEffect_Shaders(skiatest::Reporter* r, GrRecordingContext* rContext) {
Brian Osmanf72dedd2020-01-08 13:19:58 -0500394 SkImageInfo info = SkImageInfo::Make(2, 2, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
Robert Phillipse94b4e12020-07-23 13:54:35 -0400395 sk_sp<SkSurface> surface = rContext
396 ? SkSurface::MakeRenderTarget(rContext, SkBudgeted::kNo, info)
397 : SkSurface::MakeRaster(info);
Brian Osmanf72dedd2020-01-08 13:19:58 -0500398 REPORTER_ASSERT(r, surface);
Brian Osman62419612020-07-22 10:19:02 -0400399 TestEffect effect(r, surface);
Brian Osmanf72dedd2020-01-08 13:19:58 -0500400
Brian Osman504032e2020-01-10 10:05:24 -0500401 using float4 = std::array<float, 4>;
Brian Osmand18967c2021-04-01 09:56:07 -0400402 using int4 = std::array<int, 4>;
Brian Osman504032e2020-01-10 10:05:24 -0500403
Brian Osman62419612020-07-22 10:19:02 -0400404 // Local coords
Brian Osman33316412020-11-06 10:42:51 -0500405 effect.build("half4 main(float2 p) { return half4(half2(p - 0.5), 0, 1); }");
Brian Osman62419612020-07-22 10:19:02 -0400406 effect.test(0xFF000000, 0xFF0000FF, 0xFF00FF00, 0xFF00FFFF);
Brian Osmanf72dedd2020-01-08 13:19:58 -0500407
Brian Osman62419612020-07-22 10:19:02 -0400408 // Use of a simple uniform. (Draw twice with two values to ensure it's updated).
Brian Osman56ed7da2021-04-21 15:57:27 -0400409 effect.build("uniform float4 gColor; half4 main(float2 p) { return half4(gColor); }");
Brian Osmana4b91692020-08-10 14:26:16 -0400410 effect.uniform("gColor") = float4{ 0.0f, 0.25f, 0.75f, 1.0f };
Brian Osman62419612020-07-22 10:19:02 -0400411 effect.test(0xFFBF4000);
Brian Osmana4b91692020-08-10 14:26:16 -0400412 effect.uniform("gColor") = float4{ 1.0f, 0.0f, 0.0f, 0.498f };
Brian Osman62419612020-07-22 10:19:02 -0400413 effect.test(0x7F00007F); // Tests that we clamp to valid premul
Michael Ludwig5e6b3cd2020-05-27 17:02:37 -0400414
Brian Osmand18967c2021-04-01 09:56:07 -0400415 // Same, with integer uniforms
Brian Osman56ed7da2021-04-21 15:57:27 -0400416 effect.build("uniform int4 gColor; half4 main(float2 p) { return half4(gColor) / 255.0; }");
Brian Osmand18967c2021-04-01 09:56:07 -0400417 effect.uniform("gColor") = int4{ 0x00, 0x40, 0xBF, 0xFF };
418 effect.test(0xFFBF4000);
419 effect.uniform("gColor") = int4{ 0xFF, 0x00, 0x00, 0x7F };
420 effect.test(0x7F00007F); // Tests that we clamp to valid premul
421
Brian Osman62419612020-07-22 10:19:02 -0400422 // Test sk_FragCoord (device coords). Rotate the canvas to be sure we're seeing device coords.
423 // Since the surface is 2x2, we should see (0,0), (1,0), (0,1), (1,1). Multiply by 0.498 to
424 // make sure we're not saturating unexpectedly.
Brian Osman56ed7da2021-04-21 15:57:27 -0400425 effect.build(
426 "half4 main(float2 p) { return half4(0.498 * (half2(sk_FragCoord.xy) - 0.5), 0, 1); }");
Brian Osman62419612020-07-22 10:19:02 -0400427 effect.test(0xFF000000, 0xFF00007F, 0xFF007F00, 0xFF007F7F,
428 [](SkCanvas* canvas, SkPaint*) { canvas->rotate(45.0f); });
Michael Ludwig22534f22020-05-27 17:25:33 -0400429
Brian Osman0acb5b52020-09-02 13:45:47 -0400430 // Runtime effects should use relaxed precision rules by default
Brian Osman33316412020-11-06 10:42:51 -0500431 effect.build("half4 main(float2 p) { return float4(p - 0.5, 0, 1); }");
Brian Osman0acb5b52020-09-02 13:45:47 -0400432 effect.test(0xFF000000, 0xFF0000FF, 0xFF00FF00, 0xFF00FFFF);
433
Brian Osman33316412020-11-06 10:42:51 -0500434 // ... and support *returning* float4 (aka vec4), not just half4
435 effect.build("float4 main(float2 p) { return float4(p - 0.5, 0, 1); }");
436 effect.test(0xFF000000, 0xFF0000FF, 0xFF00FF00, 0xFF00FFFF);
437 effect.build("vec4 main(float2 p) { return float4(p - 0.5, 0, 1); }");
Brian Osmanf1319c32020-10-13 09:34:23 -0400438 effect.test(0xFF000000, 0xFF0000FF, 0xFF00FF00, 0xFF00FFFF);
439
Brian Osmanb4ce9442020-11-11 09:18:02 -0500440 // Mutating coords should work. (skbug.com/10918)
441 effect.build("vec4 main(vec2 p) { p -= 0.5; return vec4(p, 0, 1); }");
442 effect.test(0xFF000000, 0xFF0000FF, 0xFF00FF00, 0xFF00FFFF);
443 effect.build("void moveCoords(inout vec2 p) { p -= 0.5; }"
444 "vec4 main(vec2 p) { moveCoords(p); return vec4(p, 0, 1); }");
445 effect.test(0xFF000000, 0xFF0000FF, 0xFF00FF00, 0xFF00FFFF);
446
Brian Osmanb5f0f522020-07-23 13:28:14 -0400447 //
448 // Sampling children
449 //
450
Brian Osman62419612020-07-22 10:19:02 -0400451 // Sampling a null child should return the paint color
Brian Osman33316412020-11-06 10:42:51 -0500452 effect.build("uniform shader child;"
Brian Osman56ed7da2021-04-21 15:57:27 -0400453 "half4 main(float2 p) { return sample(child, p); }");
Brian Osman62419612020-07-22 10:19:02 -0400454 effect.child("child") = nullptr;
455 effect.test(0xFF00FFFF,
456 [](SkCanvas*, SkPaint* paint) { paint->setColor4f({1.0f, 1.0f, 0.0f, 1.0f}); });
457
458 sk_sp<SkShader> rgbwShader = make_RGBW_shader();
459
Brian Osman56ed7da2021-04-21 15:57:27 -0400460 // Sampling a simple child at our coordinates
Brian Osman33316412020-11-06 10:42:51 -0500461 effect.build("uniform shader child;"
Brian Osman56ed7da2021-04-21 15:57:27 -0400462 "half4 main(float2 p) { return sample(child, p); }");
Brian Osman62419612020-07-22 10:19:02 -0400463 effect.child("child") = rgbwShader;
464 effect.test(0xFF0000FF, 0xFF00FF00, 0xFFFF0000, 0xFFFFFFFF);
465
466 // Sampling with explicit coordinates (reflecting about the diagonal)
Brian Osman33316412020-11-06 10:42:51 -0500467 effect.build("uniform shader child;"
468 "half4 main(float2 p) { return sample(child, p.yx); }");
Brian Osman62419612020-07-22 10:19:02 -0400469 effect.child("child") = rgbwShader;
470 effect.test(0xFF0000FF, 0xFFFF0000, 0xFF00FF00, 0xFFFFFFFF);
471
Brian Osmanb5f0f522020-07-23 13:28:14 -0400472 //
473 // Helper functions
474 //
475
476 // Test case for inlining in the pipeline-stage and fragment-shader passes (skbug.com/10526):
Brian Osman33316412020-11-06 10:42:51 -0500477 effect.build("float2 helper(float2 x) { return x + 1; }"
478 "half4 main(float2 p) { float2 v = helper(p); return half4(half2(v), 0, 1); }");
Brian Osmanb5f0f522020-07-23 13:28:14 -0400479 effect.test(0xFF00FFFF);
Brian Osmanf72dedd2020-01-08 13:19:58 -0500480}
481
482DEF_TEST(SkRuntimeEffectSimple, r) {
483 test_RuntimeEffect_Shaders(r, nullptr);
484}
485
486DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SkRuntimeEffectSimple_GPU, r, ctxInfo) {
Robert Phillips6d344c32020-07-06 10:56:46 -0400487 test_RuntimeEffect_Shaders(r, ctxInfo.directContext());
Brian Osmanf72dedd2020-01-08 13:19:58 -0500488}
Brian Osmanb6bd0d22020-08-27 10:51:22 -0400489
490DEF_TEST(SkRuntimeShaderBuilderReuse, r) {
491 const char* kSource = R"(
492 uniform half x;
Brian Osman56ed7da2021-04-21 15:57:27 -0400493 half4 main(float2 p) { return half4(x); }
Brian Osmanb6bd0d22020-08-27 10:51:22 -0400494 )";
495
Brian Osman56ed7da2021-04-21 15:57:27 -0400496 sk_sp<SkRuntimeEffect> effect = SkRuntimeEffect::MakeForShader(SkString(kSource)).effect;
Brian Osmanb6bd0d22020-08-27 10:51:22 -0400497 REPORTER_ASSERT(r, effect);
498
499 // Test passes if this sequence doesn't assert. skbug.com/10667
500 SkRuntimeShaderBuilder b(std::move(effect));
501 b.uniform("x") = 0.0f;
502 auto shader_0 = b.makeShader(nullptr, false);
503
504 b.uniform("x") = 1.0f;
505 auto shader_1 = b.makeShader(nullptr, true);
506}
Brian Osman8e2ef022020-09-30 13:26:43 -0400507
Derek Sollenberger9e1cedd2021-01-14 08:30:52 -0500508DEF_TEST(SkRuntimeShaderBuilderSetUniforms, r) {
509 const char* kSource = R"(
510 uniform half x;
511 uniform vec2 offset;
Brian Osman56ed7da2021-04-21 15:57:27 -0400512 half4 main(float2 p) { return half4(x); }
Derek Sollenberger9e1cedd2021-01-14 08:30:52 -0500513 )";
514
Brian Osman56ed7da2021-04-21 15:57:27 -0400515 sk_sp<SkRuntimeEffect> effect = SkRuntimeEffect::MakeForShader(SkString(kSource)).effect;
Derek Sollenberger9e1cedd2021-01-14 08:30:52 -0500516 REPORTER_ASSERT(r, effect);
517
518 SkRuntimeShaderBuilder b(std::move(effect));
519
520 // Test passes if this sequence doesn't assert.
521 float x = 1.0f;
522 REPORTER_ASSERT(r, b.uniform("x").set(&x, 1));
523
524 // add extra value to ensure that set doesn't try to use sizeof(array)
525 float origin[] = { 2.0f, 3.0f, 4.0f };
526 REPORTER_ASSERT(r, b.uniform("offset").set<float>(origin, 2));
527
528#ifndef SK_DEBUG
529 REPORTER_ASSERT(r, !b.uniform("offset").set<float>(origin, 1));
530 REPORTER_ASSERT(r, !b.uniform("offset").set<float>(origin, 3));
531#endif
532
533
534 auto shader = b.makeShader(nullptr, false);
535}
536
Brian Osman8e2ef022020-09-30 13:26:43 -0400537DEF_TEST(SkRuntimeEffectThreaded, r) {
538 // SkRuntimeEffect uses a single compiler instance, but it's mutex locked.
539 // This tests that we can safely use it from more than one thread, and also
540 // that programs don't refer to shared structures owned by the compiler.
541 // skbug.com/10589
Brian Osman56ed7da2021-04-21 15:57:27 -0400542 static constexpr char kSource[] = "half4 main(float2 p) { return sk_FragCoord.xyxy; }";
Brian Osman8e2ef022020-09-30 13:26:43 -0400543
544 std::thread threads[16];
545 for (auto& thread : threads) {
546 thread = std::thread([r]() {
Brian Osman56ed7da2021-04-21 15:57:27 -0400547 auto [effect, error] = SkRuntimeEffect::MakeForShader(SkString(kSource));
Brian Osman8e2ef022020-09-30 13:26:43 -0400548 REPORTER_ASSERT(r, effect);
549 });
550 }
551
552 for (auto& thread : threads) {
553 thread.join();
554 }
555}
Mike Klein827f8c02021-02-06 09:13:01 -0600556
557DEF_TEST(SkRuntimeColorFilterSingleColor, r) {
558 // Test runtime colorfilters support filterColor4f().
Brian Osman56ed7da2021-04-21 15:57:27 -0400559 auto [effect, err] =
560 SkRuntimeEffect::MakeForColorFilter(SkString{"half4 main(half4 c) { return c*c; }"});
Mike Klein827f8c02021-02-06 09:13:01 -0600561 REPORTER_ASSERT(r, effect);
562 REPORTER_ASSERT(r, err.isEmpty());
563
Brian Osman56ed7da2021-04-21 15:57:27 -0400564 sk_sp<SkColorFilter> cf = effect->makeColorFilter(SkData::MakeEmpty());
Mike Klein827f8c02021-02-06 09:13:01 -0600565 REPORTER_ASSERT(r, cf);
566
567 SkColor4f c = cf->filterColor4f({0.25, 0.5, 0.75, 1.0},
568 sk_srgb_singleton(), sk_srgb_singleton());
569 REPORTER_ASSERT(r, c.fR == 0.0625f);
570 REPORTER_ASSERT(r, c.fG == 0.25f);
571 REPORTER_ASSERT(r, c.fB == 0.5625f);
572 REPORTER_ASSERT(r, c.fA == 1.0f);
573}
Brian Osman8e756f32021-02-10 10:19:27 -0500574
575static void test_RuntimeEffectStructNameReuse(skiatest::Reporter* r, GrRecordingContext* rContext) {
576 // Test that two different runtime effects can reuse struct names in a single paint operation
Brian Osman56ed7da2021-04-21 15:57:27 -0400577 auto [childEffect, err] = SkRuntimeEffect::MakeForShader(SkString(
Brian Osman8e756f32021-02-10 10:19:27 -0500578 "uniform shader paint;"
579 "struct S { half4 rgba; };"
580 "void process(inout S s) { s.rgba.rgb *= 0.5; }"
Brian Osman56ed7da2021-04-21 15:57:27 -0400581 "half4 main(float2 p) { S s; s.rgba = sample(paint, p); process(s); return s.rgba; }"
Brian Osman8e756f32021-02-10 10:19:27 -0500582 ));
583 REPORTER_ASSERT(r, childEffect, "%s\n", err.c_str());
584 sk_sp<SkShader> nullChild = nullptr;
585 sk_sp<SkShader> child = childEffect->makeShader(/*uniforms=*/nullptr, &nullChild,
586 /*childCount=*/1, /*localMatrix=*/nullptr,
587 /*isOpaque=*/false);
588
589 SkImageInfo info = SkImageInfo::Make(2, 2, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
590 sk_sp<SkSurface> surface = rContext
591 ? SkSurface::MakeRenderTarget(rContext, SkBudgeted::kNo, info)
592 : SkSurface::MakeRaster(info);
593 REPORTER_ASSERT(r, surface);
594
595 TestEffect effect(r, surface);
596 effect.build(
597 "uniform shader child;"
598 "struct S { float2 coord; };"
599 "void process(inout S s) { s.coord = s.coord.yx; }"
600 "half4 main(float2 p) { S s; s.coord = p; process(s); return sample(child, s.coord); "
601 "}");
602 effect.child("child") = child;
603 effect.test(0xFF00407F, [](SkCanvas*, SkPaint* paint) {
604 paint->setColor4f({0.99608f, 0.50196f, 0.0f, 1.0f});
605 });
606}
607
608DEF_TEST(SkRuntimeStructNameReuse, r) {
609 test_RuntimeEffectStructNameReuse(r, nullptr);
610}
611
612DEF_GPUTEST_FOR_RENDERING_CONTEXTS(SkRuntimeStructNameReuse_GPU, r, ctxInfo) {
613 test_RuntimeEffectStructNameReuse(r, ctxInfo.directContext());
614}
Mike Kleine0d9b862021-02-16 12:00:29 -0600615
616DEF_TEST(SkRuntimeColorFilterFlags, r) {
617 { // Here's a non-trivial filter that doesn't change alpha.
Brian Osman56ed7da2021-04-21 15:57:27 -0400618 auto [effect, err] = SkRuntimeEffect::MakeForColorFilter(SkString{
Brian Osmancdee1202021-04-14 09:36:49 -0400619 "half4 main(half4 color) { return color + half4(1,1,1,0); }"});
Mike Kleine0d9b862021-02-16 12:00:29 -0600620 REPORTER_ASSERT(r, effect && err.isEmpty());
Brian Osmancdee1202021-04-14 09:36:49 -0400621 sk_sp<SkColorFilter> filter = effect->makeColorFilter(SkData::MakeEmpty());
Mike Kleine0d9b862021-02-16 12:00:29 -0600622 REPORTER_ASSERT(r, filter && filter->isAlphaUnchanged());
623 }
624
625 { // Here's one that definitely changes alpha.
Brian Osman56ed7da2021-04-21 15:57:27 -0400626 auto [effect, err] = SkRuntimeEffect::MakeForColorFilter(SkString{
Brian Osmancdee1202021-04-14 09:36:49 -0400627 "half4 main(half4 color) { return color + half4(0,0,0,4); }"});
Mike Kleine0d9b862021-02-16 12:00:29 -0600628 REPORTER_ASSERT(r, effect && err.isEmpty());
Brian Osmancdee1202021-04-14 09:36:49 -0400629 sk_sp<SkColorFilter> filter = effect->makeColorFilter(SkData::MakeEmpty());
Mike Kleine0d9b862021-02-16 12:00:29 -0600630 REPORTER_ASSERT(r, filter && !filter->isAlphaUnchanged());
631 }
632}
Brian Osman4d571112021-04-27 09:10:10 -0400633
Brian Osman70ae4c82021-05-21 16:23:06 -0400634DEF_TEST(SkRuntimeShaderSampleCoords, r) {
635 // This test verifies that we detect calls to sample where the coords are the same as those
636 // passed to main. In those cases, it's safe to turn the "explicit" sampling into "passthrough"
637 // sampling. This optimization is implemented very conservatively.
638 //
639 // It also checks that we correctly set the "referencesSampleCoords" bit on the runtime effect
640 // FP, depending on how the coords parameter to main is used.
Brian Osman70ae4c82021-05-21 16:23:06 -0400641
642 auto test = [&](const char* src, bool expectExplicit, bool expectReferencesSampleCoords) {
Brian Osman4d571112021-04-27 09:10:10 -0400643 auto [effect, err] =
644 SkRuntimeEffect::MakeForShader(SkStringPrintf("uniform shader child; %s", src));
645 REPORTER_ASSERT(r, effect);
646
647 auto child = GrFragmentProcessor::MakeColor({ 1, 1, 1, 1 });
Brian Osman443b5da2021-06-04 16:52:21 -0400648 auto fp = GrSkSLFP::Make(effect, "test_fp", "child", std::move(child));
Brian Osman4d571112021-04-27 09:10:10 -0400649 REPORTER_ASSERT(r, fp);
650
651 REPORTER_ASSERT(r, fp->childProcessor(0)->isSampledWithExplicitCoords() == expectExplicit);
Brian Osman70ae4c82021-05-21 16:23:06 -0400652 REPORTER_ASSERT(r, fp->referencesSampleCoords() == expectReferencesSampleCoords);
Brian Osman4d571112021-04-27 09:10:10 -0400653 };
654
Brian Osman4d571112021-04-27 09:10:10 -0400655 // Cases where our optimization is valid, and works:
656
Brian Osman8cdf28f2021-05-24 09:52:39 -0400657 // Direct use of passed-in coords. Here, the only use of sample coords is for a sample call
658 // converted to passthrough, so referenceSampleCoords is *false*, despite appearing in main.
659 test("half4 main(float2 xy) { return sample(child, xy); }", false, false);
Brian Osman4d571112021-04-27 09:10:10 -0400660 // Sample with passed-in coords, read (but don't write) sample coords elsewhere
Brian Osman70ae4c82021-05-21 16:23:06 -0400661 test("half4 main(float2 xy) { return sample(child, xy) + sin(xy.x); }", false, true);
Brian Osman4d571112021-04-27 09:10:10 -0400662
663 // Cases where our optimization is not valid, and does not happen:
664
665 // Sampling with values completely unrelated to passed-in coords
Brian Osman70ae4c82021-05-21 16:23:06 -0400666 test("half4 main(float2 xy) { return sample(child, float2(0, 0)); }", true, false);
Brian Osman4d571112021-04-27 09:10:10 -0400667 // Use of expression involving passed in coords
Brian Osman70ae4c82021-05-21 16:23:06 -0400668 test("half4 main(float2 xy) { return sample(child, xy * 0.5); }", true, true);
Brian Osman4d571112021-04-27 09:10:10 -0400669 // Use of coords after modification
Brian Osman70ae4c82021-05-21 16:23:06 -0400670 test("half4 main(float2 xy) { xy *= 2; return sample(child, xy); }", true, true);
Brian Osman4d571112021-04-27 09:10:10 -0400671 // Use of coords after modification via out-param call
672 test("void adjust(inout float2 xy) { xy *= 2; }"
Brian Osman70ae4c82021-05-21 16:23:06 -0400673 "half4 main(float2 xy) { adjust(xy); return sample(child, xy); }", true, true);
Brian Osman4d571112021-04-27 09:10:10 -0400674
675 // There should (must) not be any false-positive cases. There are false-negatives.
676 // In all of these cases, our optimization would be valid, but does not happen:
677
678 // Direct use of passed-in coords, modified after use
Brian Osman70ae4c82021-05-21 16:23:06 -0400679 test("half4 main(float2 xy) { half4 c = sample(child, xy); xy *= 2; return c; }", true, true);
Brian Osman4d571112021-04-27 09:10:10 -0400680 // Passed-in coords copied to a temp variable
Brian Osman70ae4c82021-05-21 16:23:06 -0400681 test("half4 main(float2 xy) { float2 p = xy; return sample(child, p); }", true, true);
Brian Osman4d571112021-04-27 09:10:10 -0400682 // Use of coords passed to helper function
683 test("half4 helper(float2 xy) { return sample(child, xy); }"
Brian Osman70ae4c82021-05-21 16:23:06 -0400684 "half4 main(float2 xy) { return helper(xy); }", true, true);
Brian Osman4d571112021-04-27 09:10:10 -0400685}
Brian Osman70ae91f2021-06-10 14:27:53 -0400686
687DEF_GPUTEST_FOR_ALL_CONTEXTS(GrSkSLFP_Specialized, r, ctxInfo) {
688 struct FpAndKey {
689 std::unique_ptr<GrFragmentProcessor> fp;
690 SkTArray<uint32_t, true> key;
691 };
692
693 // Constant color, but with a similar option to GrOverrideInputFragmentProcessor
694 // specialize decides if the color is inserted in the SkSL as a literal, or left as a uniform
695 auto make_color_fp = [&](SkPMColor4f color, bool specialize) {
696 auto effect = SkMakeRuntimeEffect(SkRuntimeEffect::MakeForShader, R"(
697 uniform half4 color;
698 half4 main(float2 xy) { return color; }
699 )");
700 FpAndKey result;
701 result.fp = GrSkSLFP::Make(
702 std::move(effect), "color_fp", "color", GrSkSLFP::SpecializeIf(specialize, color));
703 GrProcessorKeyBuilder builder(&result.key);
704 result.fp->getGLSLProcessorKey(*ctxInfo.directContext()->priv().caps()->shaderCaps(),
705 &builder);
706 builder.flush();
707 return result;
708 };
709
710 FpAndKey uRed = make_color_fp({1, 0, 0, 1}, false),
711 uGreen = make_color_fp({0, 1, 0, 1}, false),
712 sRed = make_color_fp({1, 0, 0, 1}, true),
713 sGreen = make_color_fp({0, 1, 0, 1}, true);
714
715 // uRed and uGreen should have the same key - they just have different uniforms
716 SkASSERT(uRed.key == uGreen.key);
717 // sRed and sGreen should have keys that are different from the uniform case, and each other
718 SkASSERT(sRed.key != uRed.key);
719 SkASSERT(sGreen.key != uRed.key);
720 SkASSERT(sRed.key != sGreen.key);
721}