blob: 7501db286d405767fedb949773db395ce5a0372f [file] [log] [blame]
#version 310 es
precision mediump float;
struct Uniforms {
uint i;
};
struct InnerS {
int v;
};
struct S1 {
InnerS s2;
};
struct OuterS {
S1 a1[8];
};
layout(binding = 4) uniform Uniforms_1 {
uint i;
} uniforms;
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void tint_symbol() {
InnerS v = InnerS(0);
OuterS s1 = OuterS(S1[8](S1(InnerS(0)), S1(InnerS(0)), S1(InnerS(0)), S1(InnerS(0)), S1(InnerS(0)), S1(InnerS(0)), S1(InnerS(0)), S1(InnerS(0))));
s1.a1[uniforms.i].s2 = v;
return;
}
void main() {
tint_symbol();
}