24 lines
248 B
Plaintext
24 lines
248 B
Plaintext
|
#version 310 es
|
||
|
precision mediump float;
|
||
|
|
||
|
void tint_symbol() {
|
||
|
while (true) {
|
||
|
if (false) {
|
||
|
} else {
|
||
|
break;
|
||
|
}
|
||
|
{
|
||
|
if (true) {
|
||
|
} else {
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return;
|
||
|
}
|
||
|
void main() {
|
||
|
tint_symbol();
|
||
|
}
|
||
|
|
||
|
|