Skip to content

Commit 999f15b

Browse files
joaosaffran-zzjoaosaffran
authored andcommitted
Apply DXC fix and add tests
1 parent bbeafe4 commit 999f15b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// RUN: %clang --driver-mode=dxc -Zi -Fc out.s -T cs_6_3 %s
2+
3+
RWBuffer<float4> Out : register(u7, space4);
4+
5+
[numthreads(8,1,1)]
6+
void main(uint GI : SV_GroupIndex) {
7+
Out[GI] = 0;
8+
}

0 commit comments

Comments
 (0)