yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
7aaf7009e
master
1//TEST:SIMPLE(filecheck=WGSL): -target wgsl -stage compute -entry main 2 3//WGSL-DAG: @builtin(global_invocation_id) 4//WGSL-DAG: @compute 5 6void main(uint3 dtid : SV_DispatchThreadID) 7{ 8 // Empty compute shader 9}