blob: b2fc18cc0f0da6c863e11a52e990adff2628107e [file] [log] [blame]
#version 310 es
struct OuterS {
vec3 v1;
};
layout(binding = 4, std140) uniform Uniforms_ubo {
uint i;
uint pad;
uint pad_1;
uint pad_2;
} uniforms;
void tint_symbol() {
OuterS s1 = OuterS(vec3(0.0f, 0.0f, 0.0f));
s1.v1[uniforms.i] = 1.0f;
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
tint_symbol();
return;
}