You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
415 B
17 lines
415 B
|
|
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;
|
|
while (sqrt(1.0) == 2.0) ;
|
|
do ; while (sqrt(1.0) == 2.0);
|
|
return color;
|
|
}
|