Blender Git Loki
Git Commits -> Revision d481c66
Revision d481c66 by Manuel Castilla (master) August 10, 2021, 14:16 (GMT) |
Compositor: Full frame color nodes Adds full frame implementation to "Alpha Over", "Hue Saturation Value", "Invert", "Tonemap" and "ZCombine" nodes. The other nodes in "Color" submenu are implemented separately. No functional changes. Reviewed By: jbakker Differential Revision: https://developer.blender.org/D12092 |
Commit Details:
Full Hash: d481c6651d149bdc83a8c0bbb675d3d296f7c530
Parent Commit: 8f6cc16
Lines Changed: +385, -8
14 Modified Paths:
/source/blender/compositor/operations/COM_AlphaOverKeyOperation.cc (+30, -0) (Diff)
/source/blender/compositor/operations/COM_AlphaOverKeyOperation.h (+4, -0) (Diff)
/source/blender/compositor/operations/COM_AlphaOverMixedOperation.cc (+27, -0) (Diff)
/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h (+2, -0) (Diff)
/source/blender/compositor/operations/COM_AlphaOverPremultiplyOperation.cc (+29, -0) (Diff)
/source/blender/compositor/operations/COM_AlphaOverPremultiplyOperation.h (+4, -0) (Diff)
/source/blender/compositor/operations/COM_ChangeHSVOperation.cc (+23, -0) (Diff)
/source/blender/compositor/operations/COM_ChangeHSVOperation.h (+6, -2) (Diff)
/source/blender/compositor/operations/COM_InvertOperation.cc (+28, -0) (Diff)
/source/blender/compositor/operations/COM_InvertOperation.h (+6, -2) (Diff)
/source/blender/compositor/operations/COM_TonemapOperation.cc (+124, -0) (Diff)
/source/blender/compositor/operations/COM_TonemapOperation.h (+14, -2) (Diff)
/source/blender/compositor/operations/COM_ZCombineOperation.cc (+70, -0) (Diff)
/source/blender/compositor/operations/COM_ZCombineOperation.h (+18, -2) (Diff)
/source/blender/compositor/operations/COM_AlphaOverKeyOperation.h (+4, -0) (Diff)
/source/blender/compositor/operations/COM_AlphaOverMixedOperation.cc (+27, -0) (Diff)
/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h (+2, -0) (Diff)
/source/blender/compositor/operations/COM_AlphaOverPremultiplyOperation.cc (+29, -0) (Diff)
/source/blender/compositor/operations/COM_AlphaOverPremultiplyOperation.h (+4, -0) (Diff)
/source/blender/compositor/operations/COM_ChangeHSVOperation.cc (+23, -0) (Diff)
/source/blender/compositor/operations/COM_ChangeHSVOperation.h (+6, -2) (Diff)
/source/blender/compositor/operations/COM_InvertOperation.cc (+28, -0) (Diff)
/source/blender/compositor/operations/COM_InvertOperation.h (+6, -2) (Diff)
/source/blender/compositor/operations/COM_TonemapOperation.cc (+124, -0) (Diff)
/source/blender/compositor/operations/COM_TonemapOperation.h (+14, -2) (Diff)
/source/blender/compositor/operations/COM_ZCombineOperation.cc (+70, -0) (Diff)
/source/blender/compositor/operations/COM_ZCombineOperation.h (+18, -2) (Diff)