Commit 4aef5475 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

d3dx9/tests: Correct Fresnel reference term.

parent 251c9ccf
......@@ -302,7 +302,7 @@ static void D3DXFresnelTest(void)
BOOL equal;
fresnel = D3DXFresnelTerm(0.5f, 1.5f);
equal = compare_float(fresnel, 8.91867056e-02f, 1);
equal = compare_float(fresnel, 8.91867128e-02f, 1);
ok(equal, "Got unexpected Fresnel term %.8e.\n", fresnel);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment