This commit is contained in:
2026-05-06 23:44:13 +02:00
parent a5f787d80f
commit fd7038b853
1574 changed files with 365439 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#version 430
layout(location = 0) in vec4 in_color;
layout(location = 0) out vec4 out_color;
layout (set=0, binding=0, std430) buffer StorageBlock
{
uint counter;
} ssbo;
void main()
{
out_color = in_color;
atomicAdd(ssbo.counter, 1);
}