From 1a55000df1796b75ad95d50c1ae55862d523dba4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20D=C3=B6singer?= Date: Mon, 25 Nov 2013 23:41:10 +0100 Subject: [PATCH] wined3d: Discard non-sysmem locations in unload. --- dlls/wined3d/surface.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dlls/wined3d/surface.c b/dlls/wined3d/surface.c index 3bf4926c322..5256eb8557a 100644 --- a/dlls/wined3d/surface.c +++ b/dlls/wined3d/surface.c @@ -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);