summaryrefslogtreecommitdiffstats
path: root/tests/wgsl/semantic-group-id.slang
blob: d83f85d8ece15ad536c54987e3a6ef70cf0b34a7 (plain)
1
2
3
4
5
6
7
8
9
//TEST:SIMPLE(filecheck=WGSL): -target wgsl -stage compute -entry main

//WGSL-DAG: @builtin(workgroup_id)
//WGSL-DAG: @compute

void main(uint3 gid : SV_GroupID) 
{
    // Empty compute shader
}