d3dx9_36/tests: Avoid using an empty rect for a test. (3rd try)

Michael Stefaniuc mstefani at redhat.de
Thu Mar 3 08:23:19 CST 2016


Signed-off-by: Michael Stefaniuc <mstefani at redhat.de>
---
Third time is a charm...

Wanted to use SetRectEmpty() for this one too but then the comment would
look misplaced. Also this kinda matches better the intend of the comment
without resorting to empty rect special case.


 dlls/d3dx9_36/tests/surface.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/d3dx9_36/tests/surface.c b/dlls/d3dx9_36/tests/surface.c
index 55e3d88..dc95740 100644
--- a/dlls/d3dx9_36/tests/surface.c
+++ b/dlls/d3dx9_36/tests/surface.c
@@ -808,7 +808,7 @@ static void test_D3DXLoadSurface(IDirect3DDevice9 *device)
     hr = D3DXLoadSurfaceFromMemory(surf, NULL, &destrect, pixdata, D3DFMT_A8R8G8B8, sizeof(pixdata), NULL, &rect, D3DX_FILTER_NONE, 0);
     ok(hr == D3DERR_INVALIDCALL, "D3DXLoadSurfaceFromMemory returned %#x, expected %#x\n", hr, D3DERR_INVALIDCALL);
 
-    SetRect(&destrect, 0, 0, 0, 0); /* left = right, top = bottom */
+    SetRect(&destrect, 1, 2, 1, 2); /* left = right, top = bottom */
     hr = D3DXLoadSurfaceFromMemory(surf, NULL, &destrect, pixdata, D3DFMT_A8R8G8B8, sizeof(pixdata), NULL, &rect, D3DX_FILTER_NONE, 0);
     /* fails when debug version of d3d9 is used */
     ok(hr == D3D_OK || broken(hr == D3DERR_INVALIDCALL), "D3DXLoadSurfaceFromMemory returned %#x, expected %#x\n", hr, D3D_OK);
-- 
2.5.0



More information about the wine-patches mailing list