d3d9: Remove old debug messages from the tests.

This commit is contained in:
Stefan Dösinger 2010-01-14 07:54:58 -08:00 committed by Alexandre Julliard
parent f5b5f7176a
commit 48d6167c29
1 changed files with 0 additions and 4 deletions

View File

@ -495,9 +495,6 @@ static void clear_test(IDirect3DDevice9 *device)
hr = IDirect3DDevice9_GetViewport(device, &old_vp);
ok(hr == D3D_OK, "IDirect3DDevice9_GetViewport failed with %08x\n", hr);
trace("viewport: X %u, Y %u, W %u, H %u, MinZ %.8e, MaxZ %.8e.\n",
old_vp.X, old_vp.Y, old_vp.Width, old_vp.Height, old_vp.MinZ, old_vp.MaxZ);
vp.X = 160;
vp.Y = 120;
vp.Width = 160;
@ -10433,7 +10430,6 @@ static void loop_index_test(IDirect3DDevice9 *device) {
ok(hr == D3D_OK, "IDirect3DDevice9_BeginScene returned %08x\n", hr);
if(SUCCEEDED(hr))
{
trace("going to draw index\n");
hr = IDirect3DDevice9_DrawPrimitiveUP(device, D3DPT_TRIANGLESTRIP, 2, quad, 3 * sizeof(float));
ok(hr == D3D_OK, "DrawPrimitiveUP failed (%08x)\n", hr);
hr = IDirect3DDevice9_EndScene(device);