mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 12:48:56 +00:00
6 lines
122 B
Text
6 lines
122 B
Text
groupshared float4 a[100];
|
|
|
|
void main(int dti : SV_DispatchThreadID, int gti : SV_GroupThreadID)
|
|
{
|
|
dti - gti;
|
|
}
|