dawn-cmake/test/tint/out_of_order_decls/func/func.wgsl.expected.glsl

15 lines
114 B
GLSL

#version 310 es
precision mediump float;
void f2() {
}
void f1() {
f2();
}
void main() {
f1();
return;
}