mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
9a7dcb1077
Closes #2923
13 lines
198 B
Metal
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;
|
|
}
|