* Update SPIRV libraries - Update `spirv-cross` - Update `spirv-tools` - Update `glslang` `spirv-tools` contains a fix for an issue we reported (unnecessary promotions to highp in certain expressions). * Add SPIRV-Tools dependency to matinfo
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;
|
|
}
|