Henri Verbeet : d3d9: Pass non-NULL rectangles to wined3d_texture_blt() in d3d9_device_StretchRect().

Alexandre Julliard julliard at wine.codeweavers.com
Fri Jan 29 09:10:07 CST 2016


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

Author: Henri Verbeet <hverbeet at codeweavers.com>
Date:   Thu Jan 28 18:40:21 2016 +0100

d3d9: Pass non-NULL rectangles to wined3d_texture_blt() in d3d9_device_StretchRect().

Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/d3d9/device.c | 45 +++++++++++++++++++++++++++++----------------
 1 file changed, 29 insertions(+), 16 deletions(-)

diff --git a/dlls/d3d9/device.c b/dlls/d3d9/device.c
index f357570..7827c75 100644
--- a/dlls/d3d9/device.c
+++ b/dlls/d3d9/device.c
@@ -1331,6 +1331,7 @@ static HRESULT WINAPI d3d9_device_StretchRect(IDirect3DDevice9Ex *iface, IDirect
     HRESULT hr = D3DERR_INVALIDCALL;
     struct wined3d_resource_desc src_desc, dst_desc;
     struct wined3d_resource *sub_resource;
+    RECT d, s;
 
     TRACE("iface %p, src_surface %p, src_rect %p, dst_surface %p, dst_rect %p, filter %#x.\n",
             iface, src_surface, src_rect, dst_surface, dst_rect, filter);
@@ -1338,9 +1339,25 @@ static HRESULT WINAPI d3d9_device_StretchRect(IDirect3DDevice9Ex *iface, IDirect
     wined3d_mutex_lock();
     sub_resource = wined3d_texture_get_sub_resource(dst->wined3d_texture, dst->sub_resource_idx);
     wined3d_resource_get_desc(sub_resource, &dst_desc);
+    if (!dst_rect)
+    {
+        d.left = 0;
+        d.top = 0;
+        d.right = dst_desc.width;
+        d.bottom = dst_desc.height;
+        dst_rect = &d;
+    }
 
     sub_resource = wined3d_texture_get_sub_resource(src->wined3d_texture, src->sub_resource_idx);
     wined3d_resource_get_desc(sub_resource, &src_desc);
+    if (!src_rect)
+    {
+        s.left = 0;
+        s.top = 0;
+        s.right = src_desc.width;
+        s.bottom = src_desc.height;
+        src_rect = &s;
+    }
 
     if (src_desc.usage & WINED3DUSAGE_DEPTHSTENCIL)
     {
@@ -1350,26 +1367,22 @@ static HRESULT WINAPI d3d9_device_StretchRect(IDirect3DDevice9Ex *iface, IDirect
             goto done;
         }
 
-        if (src_rect)
+        if (src_rect->left || src_rect->top || src_rect->right != src_desc.width
+                || src_rect->bottom != src_desc.height)
         {
-            if (src_rect->left || src_rect->top || src_rect->right != src_desc.width
-                    || src_rect->bottom != src_desc.height)
-            {
-                WARN("Rejecting depth / stencil blit with invalid source rect %s.\n",
-                        wine_dbgstr_rect(src_rect));
-                goto done;
-            }
+            WARN("Rejecting depth / stencil blit with invalid source rect %s.\n",
+                    wine_dbgstr_rect(src_rect));
+            goto done;
         }
-        if (dst_rect)
+
+        if (dst_rect->left || dst_rect->top || dst_rect->right != dst_desc.width
+                || dst_rect->bottom != dst_desc.height)
         {
-            if (dst_rect->left || dst_rect->top || dst_rect->right != dst_desc.width
-                    || dst_rect->bottom != dst_desc.height)
-            {
-                WARN("Rejecting depth / stencil blit with invalid destination rect %s.\n",
-                        wine_dbgstr_rect(dst_rect));
-                goto done;
-            }
+            WARN("Rejecting depth / stencil blit with invalid destination rect %s.\n",
+                    wine_dbgstr_rect(dst_rect));
+            goto done;
         }
+
         if (src_desc.width != dst_desc.width || src_desc.height != dst_desc.height)
         {
             WARN("Rejecting depth / stencil blit with mismatched surface sizes.\n");




More information about the wine-cvs mailing list