mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
Merge pull request #643 from wheremyfoodat/wheremyfoodat-patch-2
Tests: Enable accurate multiplication in shader JIT tests
This commit is contained in:
commit
0089d73588
1 changed files with 6 additions and 2 deletions
|
@ -85,7 +85,11 @@ class ShaderJITTest final : public ShaderInterpreterTest {
|
|||
private:
|
||||
ShaderJIT shaderJit = {};
|
||||
|
||||
void runShader() override { shaderJit.run(*shader); }
|
||||
void runShader() override {
|
||||
// We prefer to run tests with accurate NaN emulation
|
||||
shaderJit.setAccurateMul(true);
|
||||
shaderJit.run(*shader);
|
||||
}
|
||||
|
||||
public:
|
||||
explicit ShaderJITTest(std::initializer_list<nihstro::InlineAsm> code) : ShaderInterpreterTest(code) { shaderJit.prepare(*shader); }
|
||||
|
|
Loading…
Add table
Reference in a new issue