David Adam : d3dx9: Fix D3DXMatrixStack_RotateAxisLocal to make tests pass in Windows.

Alexandre Julliard julliard at winehq.org
Mon Jul 20 07:36:50 CDT 2009


Module: wine
Branch: master
Commit: 94c7ab72f5cac262141923194d730df07c1d77e1
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=94c7ab72f5cac262141923194d730df07c1d77e1

Author: David Adam <david.adam.cnrs at gmail.com>
Date:   Fri Jul 17 18:01:03 2009 +0200

d3dx9: Fix D3DXMatrixStack_RotateAxisLocal to make tests pass in Windows.

---

 dlls/d3dx9_36/math.c       |    1 -
 dlls/d3dx9_36/tests/math.c |    3 ---
 2 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/dlls/d3dx9_36/math.c b/dlls/d3dx9_36/math.c
index 925674a..c2193c8 100644
--- a/dlls/d3dx9_36/math.c
+++ b/dlls/d3dx9_36/math.c
@@ -946,7 +946,6 @@ static HRESULT WINAPI ID3DXMatrixStackImpl_RotateAxisLocal(ID3DXMatrixStack *ifa
 
     TRACE("iface %p\n", iface);
 
-    if (!pv) return D3DERR_INVALIDCALL;
     D3DXMatrixRotationAxis(&temp, pv, angle);
     D3DXMatrixMultiply(&This->stack[This->current], &temp, &This->stack[This->current]);
 
diff --git a/dlls/d3dx9_36/tests/math.c b/dlls/d3dx9_36/tests/math.c
index 4c1a21d..610aa23 100644
--- a/dlls/d3dx9_36/tests/math.c
+++ b/dlls/d3dx9_36/tests/math.c
@@ -1519,9 +1519,6 @@ static void test_matrix_stack(void)
     ok(SUCCEEDED(hr), "Pop failed, hr %#x\n", hr);
     ok(D3DXMatrixIsIdentity(ID3DXMatrixStack_GetTop(stack)), "The top should be an identity matrix\n");
 
-    hr = ID3DXMatrixStack_RotateAxisLocal(stack, NULL, 2.0f);
-    ok(hr == D3DERR_INVALIDCALL, "Expected D3DERR_INVALIDCALL, got %#x\n", hr);
-
     refcount = ID3DXMatrixStack_Release(stack);
     ok(!refcount, "Matrix stack has %u references left.\n", refcount);
 }




More information about the wine-cvs mailing list