skia2/tests/sksl/shared/SwitchContainingDeadCode.glsl

15 lines
229 B
Plaintext
Raw Normal View History

out vec4 sk_FragColor;
void main() {
float x;
switch (int(sqrt(2.0))) {
case 0:
x = 0.0;
case 1:
x = 1.0;
default:
x = 2.0;
}
sk_FragColor = vec4(x);
}