[Bf-blender-cvs] [2b80bfe9d0e] master: Color Management: add Filmic sRGB as an image colorspace

Brecht Van Lommel noreply at git.blender.org
Thu Jun 2 18:49:23 CEST 2022


Commit: 2b80bfe9d0e94ba5fae1dccf6eee702fc64df049
Author: Brecht Van Lommel
Date:   Fri Jan 21 18:49:03 2022 +0100
Branches: master
https://developer.blender.org/rB2b80bfe9d0e94ba5fae1dccf6eee702fc64df049

Color Management: add Filmic sRGB as an image colorspace

A typical use case is when you want to render with the Filmic view transform, but
composite an existing image in the background that should not be affected by the
view transform.

With this colorspace it's possible to do an inverse Filmic transform, render
everything in scene linear space, and then apply the Filmic transform again.

This is pretty basic in that this is not going to take into account the full view
transform including looks, curves and exposure. But it can be helpful anyway.

Ref T68926

===================================================================

M	release/datafiles/colormanagement/config.ocio

===================================================================

diff --git a/release/datafiles/colormanagement/config.ocio b/release/datafiles/colormanagement/config.ocio
index df359d6c86c..6e74f1b7c6f 100644
--- a/release/datafiles/colormanagement/config.ocio
+++ b/release/datafiles/colormanagement/config.ocio
@@ -162,7 +162,7 @@ colorspaces:
     equalitygroup:
     bitdepth: 32f
     description: |
-      Standard RGB Display Space
+      sRGB display space
     isdata: false
     to_reference: !<FileTransform> {src: srgb.spi1d, interpolation: linear}
     from_reference: !<FileTransform> {src: srgb_inv.spi1d, interpolation: linear}
@@ -193,11 +193,11 @@ colorspaces:
 
   - !<ColorSpace>
     name: Filmic sRGB
-    family: display
+    family:
     equalitygroup:
     bitdepth: 32f
     description: |
-      Filmic sRGB view transform
+      sRGB displace space with Filmic view transform
     isdata: false
     from_reference: !<GroupTransform>
         children:



More information about the Bf-blender-cvs mailing list