HLSL: Turn on tests for groupshared.

This commit is contained in:
John Kessenich
2016-10-16 12:22:20 -06:00
parent b50fd17acb
commit 5d45eadedc
7 changed files with 365 additions and 366 deletions

View File

@@ -1,6 +1,6 @@
int dti : SV_DispatchThreadID;
groupshared float4 a[100];
void main()
void main(int dti : SV_DispatchThreadID)
{
dti;
}