HLSL: Support SV_Coverage and SV_DispatchThreadId; catch SV_GroupIndex.

This commit is contained in:
John Kessenich
2016-10-16 12:12:11 -06:00
parent 4a3467933e
commit b50fd17acb
7 changed files with 88 additions and 9 deletions

6
Test/hlsl.basic.comp Normal file
View File

@@ -0,0 +1,6 @@
int dti : SV_DispatchThreadID;
void main()
{
dti;
}