mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
7 lines
122 B
Plaintext
7 lines
122 B
Plaintext
groupshared float4 a[100];
|
|
|
|
void main(int dti : SV_DispatchThreadID, int gti : SV_GroupThreadID)
|
|
{
|
|
dti - gti;
|
|
}
|