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