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:
authorMatt Ebb <matt@mke3.net>2010-03-09 04:25:15 +0300
committerMatt Ebb <matt@mke3.net>2010-03-09 04:25:15 +0300
commitca43a2a87fee9634baf8aa9c526b99bfcd44ec87 (patch)
treecbb555608f2b9272e82a753813b5275e6df7c451 /source/blender/nodes
parent70efb8d322bc3965a3e68ec2034af28cd8a0aa8b (diff)
Fix [#21022] Compositors File Output node doesn't use Colour Managment
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/intern/CMP_nodes/CMP_outputFile.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/nodes/intern/CMP_nodes/CMP_outputFile.c b/source/blender/nodes/intern/CMP_nodes/CMP_outputFile.c
index b948ccbd273..43a50235f9f 100644
--- a/source/blender/nodes/intern/CMP_nodes/CMP_outputFile.c
+++ b/source/blender/nodes/intern/CMP_nodes/CMP_outputFile.c
@@ -54,6 +54,8 @@ static void node_composit_exec_output_file(void *data, bNode *node, bNodeStack *
ibuf->rect_float= cbuf->rect;
ibuf->dither= rd->dither_intensity;
+ ibuf->profile = IB_PROFILE_LINEAR_RGB;
+
if(in[1]->data) {
CompBuf *zbuf= in[1]->data;
if(zbuf->type==CB_VAL && zbuf->x==cbuf->x && zbuf->y==cbuf->y) {