wined3d: Acquire references to depth/stencil views for command lists by inspecting CS packets.

Signed-off-by: Jan Sikorski <jsikorski@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jan Sikorski 2022-01-24 13:58:59 +01:00 committed by Alexandre Julliard
parent e6b61128e5
commit e7810388e2
1 changed files with 20 additions and 0 deletions

View File

@ -3584,6 +3584,16 @@ static void wined3d_cs_packet_decref_objects(const struct wined3d_cs_packet *pac
break;
}
case WINED3D_CS_OP_SET_DEPTH_STENCIL_VIEW:
{
struct wined3d_cs_set_depth_stencil_view *op;
op = (struct wined3d_cs_set_depth_stencil_view *)packet->data;
if (op->view)
wined3d_rendertarget_view_decref(op->view);
break;
}
default:
break;
}
@ -3686,6 +3696,16 @@ static void wined3d_cs_packet_incref_objects(struct wined3d_cs_packet *packet)
break;
}
case WINED3D_CS_OP_SET_DEPTH_STENCIL_VIEW:
{
struct wined3d_cs_set_depth_stencil_view *op;
op = (struct wined3d_cs_set_depth_stencil_view *)packet->data;
if (op->view)
wined3d_rendertarget_view_incref(op->view);
break;
}
default:
break;
}