ddraw: Also store supported user clip planes.

Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Józef Kucia 2017-12-07 12:14:16 +01:00 committed by Alexandre Julliard
parent f1512cf25f
commit 8999dfac61
1 changed files with 6 additions and 3 deletions

View File

@ -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();