Module: wine Branch: master Commit: f24bf3e4bd78f65f56a67df292c40864294693a6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f24bf3e4bd78f65f56a67df292...
Author: David Adam david.adam.cnrs@gmail.com Date: Wed Jul 15 21:14:00 2009 +0200
d3dx9: Remove a failing test in Windows.
---
dlls/d3dx9_36/tests/math.c | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/dlls/d3dx9_36/tests/math.c b/dlls/d3dx9_36/tests/math.c index d55a0d4..722198a 100644 --- a/dlls/d3dx9_36/tests/math.c +++ b/dlls/d3dx9_36/tests/math.c @@ -593,11 +593,6 @@ static void D3DXPlaneTest(void) expectedplane.a = 0.085914f; expectedplane.b = -0.704492f; expectedplane.c = 0.704492f; expectedplane.d = -0.790406f; D3DXPlaneFromPoints(&gotplane,&vec1,&vec2,&vec3); expect_plane(expectedplane, gotplane); - /* Test if 2 vectors are parallels */ - vec3.x = 1.0f; vec3.y = 1.0f; vec3.z = 2.0f; - expectedplane.a = 0.0f; expectedplane.b = 0.0f; expectedplane.c = 0.0f; expectedplane.d = 0.0f; - D3DXPlaneFromPoints(&gotplane,&vec1,&vec2,&vec3); - expect_plane(expectedplane, gotplane);
/*_______________D3DXPlaneIntersectLine___________*/ vec1.x = 9.0f; vec1.y = 6.0f; vec1.z = 3.0f;