Increase SRGB <-> Linear test tolerance to 6ULP

MacOS14 LLVM version needed this increase
This commit is contained in:
Jake Turner
2025-10-07 13:32:03 +01:00
parent c69d482f66
commit cfc467bbc4
+1 -1
View File
@@ -1349,7 +1349,7 @@ TEST_CASE("Check format conversion", "[format]")
INFO(a);
INFO(c);
CHECK(fabs(a - c) <= fabs(a * 3.0f * FLT_EPSILON));
CHECK(fabs(a - c) <= fabs(a * 6.0f * FLT_EPSILON));
if(i == UINT16_MAX)
break;