1
0
mirror of https://github.com/hajimehoshi/ebiten.git synced 2025-01-22 08:52:03 +01:00
ebiten/internal/shader/testdata/atan.expected.metal

10 lines
174 B
Metal

bool F0(float l0, float l1);
bool F0(float l0, float l1) {
float l2 = float(0);
float l3 = float(0);
l2 = atan((l1) / (l0));
l3 = atan2(l1, l0);
return (l2) == (l3);
}