edac7716aa
In particular, this optimizes abs() and sign() when all inputs are known at compile time. This resolves a TODO on a test case in `IllegalIndexing.rts`. Change-Id: Ica310522a85b42dc7ae255bd25004a6629d04176 Bug: skia:10835 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/405676 Auto-Submit: John Stiles <johnstiles@google.com> Commit-Queue: John Stiles <johnstiles@google.com> Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
10 lines
489 B
GLSL
10 lines
489 B
GLSL
|
|
out vec4 sk_FragColor;
|
|
uniform vec4 testInputs;
|
|
uniform vec4 colorGreen;
|
|
uniform vec4 colorRed;
|
|
vec4 main() {
|
|
vec4 expected = vec4(1.25, 0.0, 0.75, 2.25);
|
|
return ((((((abs(testInputs.x) == expected.x && abs(testInputs.xy) == expected.xy) && abs(testInputs.xyz) == expected.xyz) && abs(testInputs) == expected) && 1.25 == expected.x) && vec2(1.25, 0.0) == expected.xy) && vec3(1.25, 0.0, 0.75) == expected.xyz) && vec4(1.25, 0.0, 0.75, 2.25) == expected ? colorGreen : colorRed;
|
|
}
|