skia2/tests/sksl/inliner/InlinerAvoidsVariableNameOverlap.glsl
John Stiles 0c9d888748 Run SkSL inliner tests as part of dm.
Previously, these tests were never actually executed, only read during
code review. They are now properly tested for correctness whenever dm
is run. Non-ES2 compliant statements (do/while/switch) are unfortunately
excluded here, as they are not compatible with Runtime Effects yet.

Change-Id: I965c782baad6f8dd3961a400ae791fb2c1f844d3
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/389296
Auto-Submit: John Stiles <johnstiles@google.com>
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
2021-03-25 22:58:54 +00:00

8 lines
158 B
GLSL

out vec4 sk_FragColor;
vec4 main() {
vec2 _1_reusedName = vec2(1.0, 2.0);
vec2 _2_reusedName = _1_reusedName - 1.0;
return _2_reusedName.xyxy;
}