d3dx9_36/test: Remove an unconsistent test.

This commit is contained in:
David Adam 2009-01-11 12:48:03 +01:00 committed by Alexandre Julliard
parent 59158fb25c
commit e1fefd57e7
2 changed files with 0 additions and 10 deletions

View File

@ -84,11 +84,6 @@ HRESULT WINAPI D3DXMatrixDecompose(D3DXVECTOR3 *poutscale, D3DXQUATERNION *poutr
D3DXMATRIX normalized;
D3DXVECTOR3 vec;
if (!pm)
{
return D3DERR_INVALIDCALL;
}
/*Compute the scaling part.*/
vec.x=pm->u.m[0][0];
vec.y=pm->u.m[0][1];

View File

@ -578,11 +578,6 @@ static void test_Matrix_Decompose(void)
hr = D3DXMatrixDecompose(&got_scale, &got_rotation, &got_translation, &pm);
ok(hr == D3DERR_INVALIDCALL, "Expected D3DERR_INVALIDCALL, got %x\n", hr);
/*___________*/
hr = D3DXMatrixDecompose(&got_scale, &got_rotation, &got_translation, NULL);
ok(hr == D3DERR_INVALIDCALL, "Expected D3DERR_INVALIDCALL, got %x\n", hr);
}
static void test_Matrix_Transformation2D(void)