dawn-cmake/test/tint/out_of_order_decls/struct/alias.wgsl.expected.glsl

16 lines
125 B
GLSL

#version 310 es
precision highp float;
struct S {
int m;
};
void f() {
S v = S(0);
}
void main() {
f();
return;
}