[PATCH 1/9] ddraw: Also store supported user clip planes.

Józef Kucia jkucia at codeweavers.com
Thu Dec 7 05:14:16 CST 2017


Signed-off-by: Józef Kucia <jkucia at codeweavers.com>
---
 dlls/ddraw/device.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/dlls/ddraw/device.c b/dlls/ddraw/device.c
index 32a2f1a6be50..542f23a0ef26 100644
--- a/dlls/ddraw/device.c
+++ b/dlls/ddraw/device.c
@@ -6469,11 +6469,14 @@ static HRESULT d3d_device7_SetClipPlane(IDirect3DDevice7 *iface, DWORD idx, D3DV
 
     wined3d_mutex_lock();
     hr = wined3d_device_set_clip_plane(device->wined3d_device, idx, wined3d_plane);
-    if (hr == WINED3DERR_INVALIDCALL && idx < ARRAY_SIZE(device->user_clip_planes))
+    if (idx < ARRAY_SIZE(device->user_clip_planes))
     {
-        WARN("Clip plane %u is not supported.\n", idx);
         device->user_clip_planes[idx] = *wined3d_plane;
-        hr = D3D_OK;
+        if (hr == WINED3DERR_INVALIDCALL)
+        {
+            WARN("Clip plane %u is not supported.\n", idx);
+            hr = D3D_OK;
+        }
     }
     wined3d_mutex_unlock();
 
-- 
2.13.6




More information about the wine-devel mailing list