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;
|
2022-01-28 22:36:58 +00:00
|
|
|
void computeMain(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 main() {
|
2022-01-28 22:36:58 +00:00
|
|
|
computeMain(gl_GlobalInvocationID);
|
|
|
|
return;
|
2021-11-16 15:15:36 +00:00
|
|
|
}
|