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

13 lines
119 B
GLSL

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