From fd7bffa3c5276229a0ca06e4ff59319fbfc674f9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 16 Aug 2013 13:06:40 +0000 Subject: replace calls to BLI_linklist_append with BLI_linklist_prepend where order us unimportant, since append steps over the whole list each time. --- source/blender/gpu/intern/gpu_draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/gpu/intern/gpu_draw.c') diff --git a/source/blender/gpu/intern/gpu_draw.c b/source/blender/gpu/intern/gpu_draw.c index e9f9d4a3379..0d25d988df9 100644 --- a/source/blender/gpu/intern/gpu_draw.c +++ b/source/blender/gpu/intern/gpu_draw.c @@ -1216,7 +1216,7 @@ static LinkNode *image_free_queue = NULL; static void gpu_queue_image_for_free(Image *ima) { BLI_lock_thread(LOCK_OPENGL); - BLI_linklist_append(&image_free_queue, ima); + BLI_linklist_prepend(&image_free_queue, ima); BLI_unlock_thread(LOCK_OPENGL); } -- cgit v1.2.3