Blender Git Loki
Git Commits -> Revision 344aca3
Revision 344aca3 by Manuel Castilla (master) August 23, 2021, 15:07 (GMT) |
Compositor: Full frame distort nodes Adds full frame implementation to "Displace", "Crop", "Flip", "Plane Track Deform", "Corner Pin", "Movie Distortion", "Lens Distortion" and "Map UV" nodes. The other nodes in "Distort" sub-menu are implemented separately in other commits. No functional changes. Part of T88150. Reviewed By: jbakker Differential Revision: https://developer.blender.org/D12166 |
Commit Details:
Full Hash: 344aca3b1bf2718904455ea6cef1ffd8bedf51a6
Parent Commit: 064167f
Lines Changed: +934, -57
22 Modified Paths:
/source/blender/compositor/operations/COM_CropOperation.cc (+45, -0) (Diff)
/source/blender/compositor/operations/COM_CropOperation.h (+11, -2) (Diff)
/source/blender/compositor/operations/COM_DisplaceOperation.cc (+81, -14) (Diff)
/source/blender/compositor/operations/COM_DisplaceOperation.h (+17, -5) (Diff)
/source/blender/compositor/operations/COM_DisplaceSimpleOperation.cc (+52, -0) (Diff)
/source/blender/compositor/operations/COM_DisplaceSimpleOperation.h (+7, -2) (Diff)
/source/blender/compositor/operations/COM_FlipOperation.cc (+38, -0) (Diff)
/source/blender/compositor/operations/COM_FlipOperation.h (+7, -2) (Diff)
/source/blender/compositor/operations/COM_MapUVOperation.cc (+91, -6) (Diff)
/source/blender/compositor/operations/COM_MapUVOperation.h (+19, -2) (Diff)
/source/blender/compositor/operations/COM_MovieDistortionOperation.cc (+47, -0) (Diff)
/source/blender/compositor/operations/COM_MovieDistortionOperation.h (+7, -2) (Diff)
/source/blender/compositor/operations/COM_PlaneCornerPinOperation.cc (+99, -0) (Diff)
/source/blender/compositor/operations/COM_PlaneCornerPinOperation.h (+7, -0) (Diff)
/source/blender/compositor/operations/COM_PlaneDistortCommonOperation.cc (+113, -2) (Diff)
/source/blender/compositor/operations/COM_PlaneDistortCommonOperation.h (+14, -2) (Diff)
/source/blender/compositor/operations/COM_PlaneTrackOperation.cc (+24, -2) (Diff)
/source/blender/compositor/operations/COM_PlaneTrackOperation.h (+4, -0) (Diff)
/source/blender/compositor/operations/COM_ProjectorLensDistortionOperation.cc (+54, -0) (Diff)
/source/blender/compositor/operations/COM_ProjectorLensDistortionOperation.h (+9, -2) (Diff)
/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.cc (+178, -11) (Diff)
/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h (+10, -3) (Diff)
/source/blender/compositor/operations/COM_CropOperation.h (+11, -2) (Diff)
/source/blender/compositor/operations/COM_DisplaceOperation.cc (+81, -14) (Diff)
/source/blender/compositor/operations/COM_DisplaceOperation.h (+17, -5) (Diff)
/source/blender/compositor/operations/COM_DisplaceSimpleOperation.cc (+52, -0) (Diff)
/source/blender/compositor/operations/COM_DisplaceSimpleOperation.h (+7, -2) (Diff)
/source/blender/compositor/operations/COM_FlipOperation.cc (+38, -0) (Diff)
/source/blender/compositor/operations/COM_FlipOperation.h (+7, -2) (Diff)
/source/blender/compositor/operations/COM_MapUVOperation.cc (+91, -6) (Diff)
/source/blender/compositor/operations/COM_MapUVOperation.h (+19, -2) (Diff)
/source/blender/compositor/operations/COM_MovieDistortionOperation.cc (+47, -0) (Diff)
/source/blender/compositor/operations/COM_MovieDistortionOperation.h (+7, -2) (Diff)
/source/blender/compositor/operations/COM_PlaneCornerPinOperation.cc (+99, -0) (Diff)
/source/blender/compositor/operations/COM_PlaneCornerPinOperation.h (+7, -0) (Diff)
/source/blender/compositor/operations/COM_PlaneDistortCommonOperation.cc (+113, -2) (Diff)
/source/blender/compositor/operations/COM_PlaneDistortCommonOperation.h (+14, -2) (Diff)
/source/blender/compositor/operations/COM_PlaneTrackOperation.cc (+24, -2) (Diff)
/source/blender/compositor/operations/COM_PlaneTrackOperation.h (+4, -0) (Diff)
/source/blender/compositor/operations/COM_ProjectorLensDistortionOperation.cc (+54, -0) (Diff)
/source/blender/compositor/operations/COM_ProjectorLensDistortionOperation.h (+9, -2) (Diff)
/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.cc (+178, -11) (Diff)
/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h (+10, -3) (Diff)