mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
337f44c916
Fixes #1340
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;
|
|
}
|