mirror of
https://github.com/Kbz-8/Pulse.git
synced 2026-01-11 15:33:34 +00:00
working on Vulkahn compute pipelines
This commit is contained in:
13
Examples/Vulkan/shader.nzsl
git.filemode.normal_file
13
Examples/Vulkan/shader.nzsl
git.filemode.normal_file
@@ -0,0 +1,13 @@
|
||||
[nzsl_version("1.0")]
|
||||
module;
|
||||
|
||||
struct Input
|
||||
{
|
||||
[builtin(global_invocation_indices)] indices: vec3[u32]
|
||||
}
|
||||
|
||||
[entry(compute)]
|
||||
[workgroup(8, 8, 8)]
|
||||
fn main(input: Input)
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user