yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

Ellie HermaszewskaVarying inputs and outputs for wgsl (#5669)7aaf7009e

master
214 B9 linesraw
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}