blob: 7f748b21a8cee5385ba0163e10347f6f24abfa81 [file] [log] [blame]
#version 310 es
struct UBO {
int dynamic_idx;
};
struct Result {
int tint_symbol;
};
struct S {
int data[64];
};
uniform UBO ubo;
Result result;
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
S s = S(int[64](0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0));
result.tint_symbol = s.data[ubo.dynamic_idx];
}