blob: b8abfbf76888ca0e9665bcf86947bb360db8a793 [file] [log] [blame]
dan sinclair69313792024-06-13 20:35:21 +00001
dan sinclair8f1d2762024-07-31 02:35:40 +00002groupshared float3x3 v;
3float3x3 foo() {
4 GroupMemoryBarrierWithGroupSync();
5 float3x3 v_1 = v;
6 GroupMemoryBarrierWithGroupSync();
7 return v_1;
8}
9
10[numthreads(1, 1, 1)]
11void unused_entry_point() {
12}
13