1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

d3dx9/tests: Increase tolerance for a D3DXSHMultiply3 test.

Otherwise it fails for me on 32-bit Linux with my current compiler.
This commit is contained in:
Matteo Bruni 2023-05-02 17:12:05 +02:00 committed by Alexandre Julliard
parent 2740af1448
commit a3ad4a5066

View file

@ -4095,7 +4095,7 @@ static void test_D3DXSHMultiply3(void)
D3DXSHMultiply3(c, c, b);
for (i = 0; i < ARRAY_SIZE(expected_aliased); ++i)
{
equal = compare_float(c[i], expected_aliased[i], 34);
equal = compare_float(c[i], expected_aliased[i], 64);
ok(equal, "Expected[%u] = %.8e, received = %.8e.\n", i, expected_aliased[i], c[i]);
}
}