rsx/fp/vp: Epsilon value is too large!

- Original epsilon value was 1.E-10 which nvidia linux driver could not read properly
-- Restores the original value represented in decimal notation
This commit is contained in:
kd-11 2018-01-24 12:09:02 +03:00
parent c05d164eee
commit 648fc92184
2 changed files with 3 additions and 3 deletions

View file

@ -376,7 +376,7 @@ void VertexProgramDecompiler::SetDSTSca(const std::string& code)
std::string VertexProgramDecompiler::NotZeroPositive(const std::string& code)
{
return "max(" + code + ", 0.000001)";
return "max(" + code + ", 0.0000000001)";
}
std::string VertexProgramDecompiler::BuildFuncBody(const FuncInfo& func)