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

16 lines
127 B
GLSL

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