2021-11-16 15:15:36 +00:00
|
|
|
#version 310 es
|
|
|
|
precision mediump float;
|
|
|
|
|
2021-12-09 15:45:03 +00:00
|
|
|
struct DrawIndirectArgs {
|
|
|
|
uint vertexCount;
|
|
|
|
};
|
2021-11-16 15:15:36 +00:00
|
|
|
|
2022-01-25 20:06:05 +00:00
|
|
|
layout(binding = 5) buffer DrawIndirectArgs_1 {
|
2021-11-16 15:15:36 +00:00
|
|
|
uint vertexCount;
|
|
|
|
} drawOut;
|
|
|
|
uint cubeVerts = 0u;
|
|
|
|
struct tint_symbol_1 {
|
|
|
|
uvec3 global_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
void computeMain_inner(uvec3 global_id) {
|
2021-11-19 17:46:13 +00:00
|
|
|
uint firstVertex = atomicAdd(drawOut.vertexCount, cubeVerts);
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
|
|
void computeMain(tint_symbol_1 tint_symbol) {
|
|
|
|
computeMain_inner(tint_symbol.global_id);
|
|
|
|
return;
|
|
|
|
}
|
2022-01-26 16:48:55 +00:00
|
|
|
|
|
|
|
|
2021-11-16 15:15:36 +00:00
|
|
|
void main() {
|
|
|
|
tint_symbol_1 inputs;
|
|
|
|
inputs.global_id = gl_GlobalInvocationID;
|
|
|
|
computeMain(inputs);
|
|
|
|
}
|
|
|
|
|