Commit e7810388 authored by Jan Sikorski's avatar Jan Sikorski Committed by Alexandre Julliard

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

parent e6b61128
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment