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:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-03-13 18:50:33 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-03-13 18:50:33 +0400
commit53735787ffd5902e31861132e5cc11147cfbf5b8 (patch)
tree5820089316dc02d2ab679da65c52ca55111ac4a2 /source/blender/compositor/operations/COM_PreviewOperation.h
parent47f6d7ff93e1ea451c0858cb22c0da72b347ba7a (diff)
Disable viewer nodes and previews when rendering in background mode
This node and operations are not useful in background mode anyway, but calculating them could be really time-consuming especially when working on 4K frames.
Diffstat (limited to 'source/blender/compositor/operations/COM_PreviewOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_PreviewOperation.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_PreviewOperation.h b/source/blender/compositor/operations/COM_PreviewOperation.h
index 9e774d0e41b..0da6b8e4e56 100644
--- a/source/blender/compositor/operations/COM_PreviewOperation.h
+++ b/source/blender/compositor/operations/COM_PreviewOperation.h
@@ -26,6 +26,7 @@
#include "DNA_image_types.h"
#include "DNA_color_types.h"
#include "BLI_rect.h"
+#include "BKE_global.h"
class PreviewOperation : public NodeOperation {
protected:
@@ -42,7 +43,7 @@ protected:
const ColorManagedDisplaySettings *m_displaySettings;
public:
PreviewOperation(const ColorManagedViewSettings *viewSettings, const ColorManagedDisplaySettings *displaySettings);
- bool isOutputOperation(bool rendering) const { return true; }
+ bool isOutputOperation(bool rendering) const { return !G.background; }
void initExecution();
void deinitExecution();
const CompositorPriority getRenderPriority() const;