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:
authorRobert Guetzkow <rjg>2021-01-13 13:01:44 +0300
committerRobert Guetzkow <gitcommit@outlook.de>2021-01-13 13:04:02 +0300
commit27b78c9c94baf6fa43268e851de58da96f7d7123 (patch)
tree5a112e9c42935f7db83f56c94a119336d01e253f /source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h
parent614bd239f85292a8ca6ca454b48f4a1342316252 (diff)
Compositor: "Save as Render" for the file output node
This commit adds the "Save as Render" feature to the file output node, that allows to disable the application of the configured view transform and other color management settings on the image. If disable it uses the standard view transform instead. This feature was originally suggested in T83842 and is part of the color management improvements task in T68926. With this feature it is possible to toggle the application of the color management settings for each input socket of the File Output node individually. Reviewed By: brecht Maniphest Tasks: T68926, T83842 Differential Revision: https://developer.blender.org/D9921
Diffstat (limited to 'source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h b/source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h
index bc057355cef..258ac1f9e98 100644
--- a/source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h
+++ b/source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h
@@ -38,7 +38,8 @@ class OutputOpenExrSingleLayerMultiViewOperation : public OutputSingleLayerOpera
const char *path,
const ColorManagedViewSettings *viewSettings,
const ColorManagedDisplaySettings *displaySettings,
- const char *viewName);
+ const char *viewName,
+ const bool saveAsRender);
void *get_handle(const char *filename);
void deinitExecution();
@@ -74,7 +75,8 @@ class OutputStereoOperation : public OutputSingleLayerOperation {
const char *name,
const ColorManagedViewSettings *viewSettings,
const ColorManagedDisplaySettings *displaySettings,
- const char *viewName);
+ const char *viewName,
+ const bool saveAsRender);
void *get_handle(const char *filename);
void deinitExecution();
};