Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2008-05-14 20:40:25 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-05-14 20:40:25 +0400
commit540c0e07952304aa67ec98be4dc01b17afa78cb1 (patch)
tree982cb379dfabc37de803e0c9910d763d3b29acc3 /source/blender/render/extern
parentb65d4f95fc6ff35d93dc1f8bbc07f10b7e15ea2c (diff)
uvcalc_lightmap would raise an error on meshes with no faces.
auto-threads wasnt working for baking.
Diffstat (limited to 'source/blender/render/extern')
-rw-r--r--source/blender/render/extern/include/RE_pipeline.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/render/extern/include/RE_pipeline.h b/source/blender/render/extern/include/RE_pipeline.h
index d8f6836005b..66dc1dd5fef 100644
--- a/source/blender/render/extern/include/RE_pipeline.h
+++ b/source/blender/render/extern/include/RE_pipeline.h
@@ -177,6 +177,9 @@ void RE_DataBase_ApplyWindow(struct Render *re);
/* override the scene setting for amount threads, commandline */
void RE_set_max_threads(int threads);
+/* set the render threads based on the commandline and autothreads setting */
+void RE_init_threadcount(Render *re);
+
/* the main processor, assumes all was set OK! */
void RE_TileProcessor(struct Render *re, int firsttile, int threaded);