diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-02-12 04:45:59 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-02-12 04:45:59 +0100 |
commit | 20ab9d8de6b5e0422af539276c0b1798021cb0a5 (patch) | |
tree | 03916cb29fddf97bb2539fe799b2a78c221679f6 /compute_module.comp | |
parent | c6a68596f1b1b37df6db28583137b6f5868c9028 (diff) | |
download | vulkan_compute_minimal_example-20ab9d8de6b5e0422af539276c0b1798021cb0a5.zip |
Refactor
Diffstat (limited to 'compute_module.comp')
-rw-r--r-- | compute_module.comp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/compute_module.comp b/compute_module.comp deleted file mode 100644 index a28192c..0000000 --- a/compute_module.comp +++ /dev/null @@ -1,11 +0,0 @@ -#version 450 - -layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in; - -layout(binding = 0) buffer output_buffer { - uint values_out[16]; -}; - -void main() { - for (uint i = 0; i < 16; i++) values_out[i] = i; -} |