Blender Git Loki
Git Commits -> Revision 2e795ab
August 16, 2021, 04:19 (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: 2e795ab97ef318214f6e13b6584601868436a8ff
Parent Commit: da12b28
Committed By: YimingWu
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)