From 361624ff8466e09de8c754ce2b6d5dc4588476f0 Mon Sep 17 00:00:00 2001 From: baldurk Date: Mon, 28 Apr 2025 17:10:53 +0100 Subject: [PATCH] Add slight increase to error tolerance for SNorm textures --- util/test/rdtest/shared/Texture_Zoo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/test/rdtest/shared/Texture_Zoo.py b/util/test/rdtest/shared/Texture_Zoo.py index d5b113adb..2b84d2d81 100644 --- a/util/test/rdtest/shared/Texture_Zoo.py +++ b/util/test/rdtest/shared/Texture_Zoo.py @@ -195,7 +195,7 @@ class Texture_Zoo(): eps_significand = 2.5 # Similarly SNorm essentially loses a bit of accuracy due to us only using negative values elif testCompType == rd.CompType.SNorm: - eps_significand = 2.0 + eps_significand = 2.5 if tex.format.type == rd.ResourceFormatType.R4G4B4A4 or tex.format.type == rd.ResourceFormatType.R4G4: eps = (eps_significand / 15.0)