mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 12:48:56 +00:00
13 lines
246 B
Text
13 lines
246 B
Text
|
|
float ComputeShaderFunction()
|
|
{
|
|
AllMemoryBarrier();
|
|
AllMemoryBarrierWithGroupSync();
|
|
DeviceMemoryBarrier();
|
|
DeviceMemoryBarrierWithGroupSync();
|
|
GroupMemoryBarrier();
|
|
GroupMemoryBarrierWithGroupSync();
|
|
|
|
return 0.0;
|
|
}
|
|
|