[Nodes] Add rec709 option as output color space in ImageProcessing, PanoramaPostProcessing and Texturing nodes. In ImageProcessing rec709 option is also added as working color space.

This commit is contained in:
demoulinv 2023-04-12 15:37:38 +02:00
parent f83db77bcd
commit 5e3b8a8213
3 changed files with 4 additions and 4 deletions

View file

@ -384,7 +384,7 @@ Convert or apply filtering to the input images.
label='Output Color Space',
description='Allows you to choose the color space of the output image.',
value='AUTO',
values=['AUTO', 'sRGB', 'Linear', 'ACES2065-1', 'ACEScg', 'no_conversion'],
values=['AUTO', 'sRGB', 'rec709', 'Linear', 'ACES2065-1', 'ACEScg', 'no_conversion'],
exclusive=True,
uid=[0],
),
@ -393,7 +393,7 @@ Convert or apply filtering to the input images.
label='Working Color Space',
description='Allows you to choose the color space in which the data are processed.',
value='Linear',
values=['sRGB', 'Linear', 'ACES2065-1', 'ACEScg', 'no_conversion'],
values=['sRGB', 'rec709', 'Linear', 'ACES2065-1', 'ACEScg', 'no_conversion'],
exclusive=True,
uid=[0],
enabled=lambda node: not node.applyDcpMetadata.value,