1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-02-20 15:00:08 +01:00
ebiten/internal/shader/testdata/array2.expected.metal

12 lines
169 B
Metal

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