Panda3DS/tests
Wunk c89fe05b8a
Fix shader-interpreter non-IEEE outputs (#459)
* Re-enable non-IEEE shader test

* Fix shader-interpreter RCP/RSQ output

Handle the `-0.0` special-case

* Fix shader-interpreter MIN/MAX output

Takes advantage of min/max's properties regarding non-finites to return
NaN depending on its input position:
```
max(NaN, 2.f) -> NaN
max(2.f, NaN) -> 2
min(NaN, 2.f) -> NaN
min(2.f, NaN) -> 2
```

* Fix shader-interpreter FLR indexing bug

`3 - 1` should be `3 - i`
2024-03-12 08:34:02 +02:00
..
AppCpuTimeLimit Proper handling of SetApplicationCpuTimeLimit with invalid parameters (#353) 2023-12-18 20:45:57 +02:00
DetectEmulator Add test ROMs for detecting emulators 2023-08-03 11:56:55 +03:00
HelloWorldSVC Fix submodules for realsies 2022-09-28 17:25:35 +03:00
ImmediateModeTriangles [Test ROMs] Add Immediate Mode triangle test 2023-04-11 19:04:52 +03:00
SimplerTri Add test ROMs for detecting emulators 2023-08-03 11:56:55 +03:00
shader.cpp Fix shader-interpreter non-IEEE outputs (#459) 2024-03-12 08:34:02 +02:00