mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 21:17:27 +01:00
9 lines
204 B
Metal
9 lines
204 B
Metal
void F0(thread float& l0, thread array<float, 4>& l1, thread float4& l2);
|
|
|
|
void F0(thread float& l0, thread array<float, 4>& l1, thread float4& l2) {
|
|
l0 = float(0);
|
|
l1 = {};
|
|
l2 = float4(0);
|
|
return;
|
|
}
|