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

13 lines
113 B
GLSL

#version 310 es
precision mediump float;
int a = 1;
void f() {
int b = a;
}
void main() {
f();
return;
}