Commit 6e0e2bef authored by Jan Sikorski's avatar Jan Sikorski Committed by Alexandre Julliard

wined3d: Acquire references to vertex buffers for command lists by inspecting CS packets.

parent c36351be
......@@ -3671,6 +3671,19 @@ static void wined3d_cs_packet_decref_objects(const struct wined3d_cs_packet *pac
break;
}
case WINED3D_CS_OP_SET_STREAM_SOURCES:
{
struct wined3d_cs_set_stream_sources *op;
op = (struct wined3d_cs_set_stream_sources *)packet->data;
for (i = 0; i < op->count; ++i)
{
if (op->streams[i].buffer)
wined3d_buffer_decref(op->streams[i].buffer);
}
break;
}
default:
break;
}
......@@ -3860,6 +3873,19 @@ static void wined3d_cs_packet_incref_objects(struct wined3d_cs_packet *packet)
break;
}
case WINED3D_CS_OP_SET_STREAM_SOURCES:
{
struct wined3d_cs_set_stream_sources *op;
op = (struct wined3d_cs_set_stream_sources *)packet->data;
for (i = 0; i < op->count; ++i)
{
if (op->streams[i].buffer)
wined3d_buffer_incref(op->streams[i].buffer);
}
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