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:
authorTon Roosendaal <ton@blender.org>2006-03-12 14:51:56 +0300
committerTon Roosendaal <ton@blender.org>2006-03-12 14:51:56 +0300
commit8a8c70c63a6d5e7c9fc41e12559ff5c9be0e54dd (patch)
tree7ace83a36c9aeeb8b552e3f30590a6f55f166b10 /source/blender/src/toolbox.c
parent4e4cd9407d57c3fe31675eb2a2fbf8ea8472aa9a (diff)
A couple of render improvements;
- Bug fix: the upper tile in a collumn for Panorama render didn't put the mainthread to sleep properly. Now panorama renders 25% faster if you had set Y-Parts to 4. - Enabling Compositing in Scene for first time now adds a "Composite" node too, so render output gets applied. - An attempt to render with "Do Composite" without "Composite" node will throw an error and stops rendering. In background mode it will just not render at all, and print errors. - Errors that prevent rendering now give a popup menu again. - Having MBlur or Fields option on will now normally render, but with an error print in console (not done yet...)
Diffstat (limited to 'source/blender/src/toolbox.c')
-rw-r--r--source/blender/src/toolbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/toolbox.c b/source/blender/src/toolbox.c
index 183884eb19d..a8d0d70f3f4 100644
--- a/source/blender/src/toolbox.c
+++ b/source/blender/src/toolbox.c
@@ -221,7 +221,7 @@ void error(char *fmt, ...)
sprintf(nfmt, "%s", fmt);
va_start(ap, fmt);
- if (G.background || !G.curscreen || (G.rendering)) {
+ if (G.background || !G.curscreen) {
vprintf(nfmt, ap);
printf("\n");
} else {