Commit 1a55000d authored by Stefan Dösinger's avatar Stefan Dösinger Committed by Alexandre Julliard

wined3d: Discard non-sysmem locations in unload.

parent 6dce3635
......@@ -1344,11 +1344,9 @@ static void surface_unload(struct wined3d_resource *resource)
}
else
{
/* Load the surface into system memory */
surface_load_location(surface, SFLAG_INSYSMEM);
surface_invalidate_location(surface, surface->draw_binding);
}
surface_invalidate_location(surface, SFLAG_INTEXTURE | SFLAG_INSRGBTEX);
surface_invalidate_location(surface, ~SFLAG_INSYSMEM);
surface->flags &= ~(SFLAG_ALLOCATED | SFLAG_SRGBALLOCATED);
context = context_acquire(device, NULL);
......
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