Initial commit.

Signed-off-by: Pavel Kirilin <s3riussan@gmail.com>
This commit is contained in:
2026-07-07 04:11:59 +02:00
commit c32931e2c7
5 changed files with 923 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#version 460
layout(local_size_x = 32, local_size_y = 1, local_size_z = 1) in;
layout(set = 0, binding = 0) buffer Data {
uint data[];
} buf;
void main() {
uint idx = gl_GlobalInvocationID.x;
buf.data[idx] *= 12;
}