Module: wine Branch: master Commit: ad45d2c2339ca22777699d0b89468ffdceffee34 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ad45d2c2339ca22777699d0b89...
Author: Henri Verbeet hverbeet@codeweavers.com Date: Wed Mar 19 08:57:06 2014 +0100
d3d9/tests: Use a separate device for texop_test().
---
dlls/d3d9/tests/visual.c | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-)
diff --git a/dlls/d3d9/tests/visual.c b/dlls/d3d9/tests/visual.c index e8b0e79..2cb6998 100644 --- a/dlls/d3d9/tests/visual.c +++ b/dlls/d3d9/tests/visual.c @@ -10260,13 +10260,17 @@ cleanup: if(dsttex) IDirect3DTexture9_Release(dsttex); }
-static void texop_test(IDirect3DDevice9 *device) +static void texop_test(void) { IDirect3DVertexDeclaration9 *vertex_declaration = NULL; IDirect3DTexture9 *texture = NULL; D3DLOCKED_RECT locked_rect; + IDirect3DDevice9 *device; + IDirect3D9 *d3d; D3DCOLOR color; + ULONG refcount; D3DCAPS9 caps; + HWND window; HRESULT hr; unsigned i;
@@ -10319,6 +10323,16 @@ static void texop_test(IDirect3DDevice9 *device) {D3DTOP_LERP, "LERP", D3DTEXOPCAPS_LERP, D3DCOLOR_ARGB(0x00, 0x00, 0x33, 0x33)}, };
+ window = CreateWindowA("static", "d3d9_test", WS_OVERLAPPEDWINDOW | WS_VISIBLE, + 0, 0, 640, 480, NULL, NULL, NULL, NULL); + d3d = Direct3DCreate9(D3D_SDK_VERSION); + ok(!!d3d, "Failed to create a D3D object.\n"); + if (!(device = create_device(d3d, window, window, TRUE))) + { + skip("Failed to create a D3D device, skipping tests.\n"); + goto done; + } + memset(&caps, 0, sizeof(caps)); hr = IDirect3DDevice9_GetDeviceCaps(device, &caps); ok(SUCCEEDED(hr), "GetDeviceCaps failed with 0x%08x\n", hr); @@ -10386,9 +10400,13 @@ static void texop_test(IDirect3DDevice9 *device) ok(SUCCEEDED(hr), "Present failed with 0x%08x\n", hr); }
- hr = IDirect3DDevice9_SetTexture(device, 0, NULL); IDirect3DTexture9_Release(texture); IDirect3DVertexDeclaration9_Release(vertex_declaration); + refcount = IDirect3DDevice9_Release(device); + ok(!refcount, "Device has %u references left.\n", refcount); +done: + IDirect3D9_Release(d3d); + DestroyWindow(window); }
static void yuv_color_test(IDirect3DDevice9 *device) @@ -15748,11 +15766,10 @@ START_TEST(visual) } else skip("No ps_1_1 support\n");
- texop_test(device_ptr); - cleanup_device(device_ptr); device_ptr = NULL;
+ texop_test(); texop_range_test(); alphareplicate_test(); dp3_alpha_test();