1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-01-21 16:32:02 +01:00
ebiten/internal/shader/testdata/array2.expected.metal
2024-03-10 11:59:50 +09:00

13 lines
198 B
Metal

void F0(thread array<float2, 3>& l0);
void F0(thread array<float2, 3>& l0) {
array<float2, 2> l1 = {};
array<float2, 3> l2 = {};
{
array<float2, 2> l2 = {};
l2 = l1;
}
l0 = l2;
return;
}