dan sinclair | 6931379 | 2024-06-13 20:35:21 +0000 | [diff] [blame] | 1 | |
dan sinclair | 8f1d276 | 2024-07-31 02:35:40 +0000 | [diff] [blame] | 2 | groupshared float3x3 v; |
3 | float3x3 foo() { | ||||
4 | GroupMemoryBarrierWithGroupSync(); | ||||
5 | float3x3 v_1 = v; | ||||
6 | GroupMemoryBarrierWithGroupSync(); | ||||
7 | return v_1; | ||||
8 | } | ||||
9 | |||||
10 | [numthreads(1, 1, 1)] | ||||
11 | void unused_entry_point() { | ||||
12 | } | ||||
13 |