mirror of
https://github.com/gfx-rs/wgpu.git
synced 2024-12-11 08:04:57 +00:00
33 lines
453 B
GLSL
33 lines
453 B
GLSL
#version 310 es
|
|
|
|
precision highp float;
|
|
precision highp int;
|
|
|
|
|
|
void fb1_(inout bool cond) {
|
|
bool loop_init = true;
|
|
while(true) {
|
|
if (!loop_init) {
|
|
bool _e1 = cond;
|
|
if (!(_e1)) {
|
|
break;
|
|
}
|
|
}
|
|
loop_init = false;
|
|
continue;
|
|
}
|
|
return;
|
|
}
|
|
|
|
void main_1() {
|
|
bool param = false;
|
|
param = false;
|
|
fb1_(param);
|
|
return;
|
|
}
|
|
|
|
void main() {
|
|
main_1();
|
|
}
|
|
|