blob: cca3c5c617c6a4b658fe76e1f8727d3d93c8833b [file] [log] [blame]
#version 310 es
uint count = 0u;
layout(binding = 1, std430) buffer Outputs_ssbo {
uint data[];
} outputs;
void push_output(uint value) {
outputs.data[count] = value;
count = (count + 1u);
}
void tint_symbol() {
uint a = 0u;
uint b = 10u;
uint c = 4294967294u;
a = (a + 1u);
b = (b + 1u);
c = (c + 1u);
push_output(a);
push_output(b);
push_output(c);
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
tint_symbol();
return;
}