mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
b6a340a96f
Updates #2034 Updates #2188
12 lines
169 B
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;
|
|
}
|