From d1b04a3a9d67f054d978c407461c3f92161a4cc8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 14 May 2008 16:49:33 +0000 Subject: forgot to use the thread setting function for rendering. (was only used for baking) --- source/blender/render/intern/source/pipeline.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'source/blender/render/intern') diff --git a/source/blender/render/intern/source/pipeline.c b/source/blender/render/intern/source/pipeline.c index 857269cb44d..fb699f5b382 100644 --- a/source/blender/render/intern/source/pipeline.c +++ b/source/blender/render/intern/source/pipeline.c @@ -1118,11 +1118,7 @@ void RE_InitState(Render *re, Render *source, RenderData *rd, int winx, int winy /* we clip faces with a minimum of 2 pixel boundary outside of image border. see zbuf.c */ re->clipcrop= 1.0f + 2.0f/(float)(re->winx>re->winy?re->winy:re->winx); - if ((rd->mode & R_FIXED_THREADS)==0 || commandline_threads == 0) { /* Automatic threads */ - re->r.threads = BLI_system_thread_count(); - } else if(commandline_threads >= 1 && commandline_threads<=BLENDER_MAX_THREADS) { - re->r.threads= commandline_threads; - } + RE_init_threadcount(re); } } -- cgit v1.2.3