skia2/tests/sksl/shared/EmptyBlocksES2.glsl
John Stiles c068a8f00b Update various shared/ tests to run in dm.
These tests have updated to return green on success, or red on failure.
Some tests were modified slightly to conform to ES2 limitations, or
split into separate ES2 and ES3 parts.

Change-Id: Ib47aeca217aef33f3c4b5999d93afed5d42a1e62
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/363876
Commit-Queue: Brian Osman <brianosman@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
Auto-Submit: John Stiles <johnstiles@google.com>
2021-02-01 22:06:59 +00:00

13 lines
337 B
GLSL

out vec4 sk_FragColor;
vec4 main() {
vec4 color = vec4(0.0);
for (int counter = 0;counter < 10; ++counter) ;
for (int counter = 0;counter < 10; ++counter) {
}
for (int counter = 0;counter < 10; ++counter) ;
if (sqrt(1.0) == 1.0) color.y = 1.0;
if (sqrt(1.0) == 2.0) ; else color.w = 1.0;
return color;
}