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

18 lines
198 B
GLSL

#version 310 es
precision mediump float;
struct S {
int m;
};
S A[4] = S[4](S(0), S(0), S(0), S(0));
void f() {
S tint_symbol = S(1);
A[0] = tint_symbol;
}
void main() {
f();
return;
}