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:
authorBrecht Van Lommel <brecht@blender.org>2022-10-03 20:59:33 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-10-03 22:59:20 +0300
commit42f40657f143f4f8f0c473daf8d54bab6d7c303e (patch)
tree8a2b95e07a8253cc05b053a944195f4b5a864674 /source/blender/editors/screen/screendump.c
parent9b7c84f293b6ad5d855b175ba664d4bd0d72c18d (diff)
Images: remove option to choose between BW/RGB/RGBA for multilayer EXR save
This was not properly respected, and in general with multiple passes and layers it's unclear what this should do exactly without breaking some render passes. Better to keep this image format for raw unmodified render results.
Diffstat (limited to 'source/blender/editors/screen/screendump.c')
-rw-r--r--source/blender/editors/screen/screendump.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/screen/screendump.c b/source/blender/editors/screen/screendump.c
index 38a9d8ba7ab..d46397180c5 100644
--- a/source/blender/editors/screen/screendump.c
+++ b/source/blender/editors/screen/screendump.c
@@ -124,7 +124,8 @@ static int screenshot_exec(bContext *C, wmOperator *op)
scd->dumprect = ibuf->rect;
}
- if (scd->im_format.planes == R_IMF_PLANES_BW) {
+ if ((scd->im_format.planes == R_IMF_PLANES_BW) &&
+ (scd->im_format.imtype != R_IMF_IMTYPE_MULTILAYER)) {
/* bw screenshot? - users will notice if it fails! */
IMB_color_to_bw(ibuf);
}