Blender Git Loki

Git Commits -> Revision 5413fee

Revision 5413fee by Daniel Genrich (smoke2)
May 20, 2012, 19:35 (GMT)
Merge from trunk r46614-r46814

Commit Details:

Full Hash: 5413fee77e80157931545946c6bc3fa0ac6d686a
SVN Revision: 46817
Parent Commit: 37ed2e4
Lines Changed: +55676, -14065

523 Added Paths:

/extern/bullet2/patches/make_id.patch (+42, -0) (View)
/intern/elbeem/intern/globals.h (+10, -0) (View)
/source/blender/compositor/CMakeLists.txt (+608, -0) (View)
/source/blender/compositor/COM_compositor.h (+304, -0) (View)
/source/blender/compositor/COM_defines.h (+99, -0) (View)
/source/blender/compositor/intern/COM_ChannelInfo.cpp (+35, -0) (View)
/source/blender/compositor/intern/COM_ChannelInfo.h (+121, -0) (View)
/source/blender/compositor/intern/COM_ChunkOrder.cpp (+51, -0) (View)
/source/blender/compositor/intern/COM_ChunkOrder.h (+45, -0) (View)
/source/blender/compositor/intern/COM_ChunkOrderHotspot.cpp (+40, -0) (View)
/source/blender/compositor/intern/COM_ChunkOrderHotspot.h (+37, -0) (View)
/source/blender/compositor/intern/COM_compositor.cpp (+60, -0) (View)
/source/blender/compositor/intern/COM_CompositorContext.cpp (+52, -0) (View)
/source/blender/compositor/intern/COM_CompositorContext.h (+147, -0) (View)
/source/blender/compositor/intern/COM_Converter.cpp (+501, -0) (View)
/source/blender/compositor/intern/COM_Converter.h (+70, -0) (View)
/source/blender/compositor/intern/COM_CPUDevice.cpp (+42, -0) (View)
/source/blender/compositor/intern/COM_CPUDevice.h (+41, -0) (View)
/source/blender/compositor/intern/COM_Device.cpp (+24, -0) (View)
/source/blender/compositor/intern/COM_Device.h (+57, -0) (View)
/source/blender/compositor/intern/COM_ExecutionGroup.cpp (+596, -0) (View)
/source/blender/compositor/intern/COM_ExecutionGroup.h (+404, -0) (View)
/source/blender/compositor/intern/COM_ExecutionSystem.cpp (+320, -0) (View)
/source/blender/compositor/intern/COM_ExecutionSystem.h (+229, -0) (View)
/source/blender/compositor/intern/COM_ExecutionSystemHelper.cpp (+329, -0) (View)
/source/blender/compositor/intern/COM_ExecutionSystemHelper.h (+127, -0) (View)
/source/blender/compositor/intern/COM_InputSocket.cpp (+246, -0) (View)
/source/blender/compositor/intern/COM_InputSocket.h (+162, -0) (View)
/source/blender/compositor/intern/COM_MemoryBuffer.cpp (+353, -0) (View)
/source/blender/compositor/intern/COM_MemoryBuffer.h (+170, -0) (View)
/source/blender/compositor/intern/COM_MemoryManager.cpp (+74, -0) (View)
/source/blender/compositor/intern/COM_MemoryManager.h (+146, -0) (View)
/source/blender/compositor/intern/COM_MemoryManagerState.cpp (+100, -0) (View)
/source/blender/compositor/intern/COM_MemoryManagerState.h (+87, -0) (View)
/source/blender/compositor/intern/COM_MemoryProxy.cpp (+39, -0) (View)
/source/blender/compositor/intern/COM_MemoryProxy.h (+106, -0) (View)
/source/blender/compositor/intern/COM_Node.cpp (+197, -0) (View)
/source/blender/compositor/intern/COM_Node.h (+131, -0) (View)
/source/blender/compositor/intern/COM_NodeBase.cpp (+143, -0) (View)
/source/blender/compositor/intern/COM_NodeBase.h (+174, -0) (View)
/source/blender/compositor/intern/COM_NodeOperation.cpp (+126, -0) (View)
/source/blender/compositor/intern/COM_NodeOperation.h (+247, -0) (View)
/source/blender/compositor/intern/COM_NodeProgram.cpp (+0, -0) (View)
/source/blender/compositor/intern/COM_NodeProgram.h (+7, -0) (View)
/source/blender/compositor/intern/COM_OpenCLDevice.cpp (+65, -0) (View)
/source/blender/compositor/intern/COM_OpenCLDevice.h (+88, -0) (View)
/source/blender/compositor/intern/COM_OutputSocket.cpp (+159, -0) (View)
/source/blender/compositor/intern/COM_OutputSocket.h (+105, -0) (View)
/source/blender/compositor/intern/COM_Socket.cpp (+50, -0) (View)
/source/blender/compositor/intern/COM_Socket.h (+100, -0) (View)
/source/blender/compositor/intern/COM_SocketConnection.cpp (+95, -0) (View)
/source/blender/compositor/intern/COM_SocketConnection.h (+123, -0) (View)
/source/blender/compositor/intern/COM_SocketReader.cpp (+25, -0) (View)
/source/blender/compositor/intern/COM_SocketReader.h (+113, -0) (View)
/source/blender/compositor/intern/COM_WorkPackage.cpp (+29, -0) (View)
/source/blender/compositor/intern/COM_WorkPackage.h (+64, -0) (View)
/source/blender/compositor/intern/COM_WorkScheduler.cpp (+326, -0) (View)
/source/blender/compositor/intern/COM_WorkScheduler.h (+127, -0) (View)
/source/blender/compositor/nodes/COM_AlphaOverNode.cpp (+72, -0) (View)
/source/blender/compositor/nodes/COM_AlphaOverNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_BilateralBlurNode.cpp (+43, -0) (View)
/source/blender/compositor/nodes/COM_BilateralBlurNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_BlurNode.cpp (+85, -0) (View)
/source/blender/compositor/nodes/COM_BlurNode.h (+39, -0) (View)
/source/blender/compositor/nodes/COM_BokehBlurNode.cpp (+66, -0) (View)
/source/blender/compositor/nodes/COM_BokehBlurNode.h (+39, -0) (View)
/source/blender/compositor/nodes/COM_BokehImageNode.cpp (+39, -0) (View)
/source/blender/compositor/nodes/COM_BokehImageNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_BoxMaskNode.cpp (+43, -0) (View)
/source/blender/compositor/nodes/COM_BoxMaskNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_BrightnessNode.cpp (+41, -0) (View)
/source/blender/compositor/nodes/COM_BrightnessNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_ChannelMatteNode.cpp (+90, -0) (View)
/source/blender/compositor/nodes/COM_ChannelMatteNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_ChromaMatteNode.cpp (+71, -0) (View)
/source/blender/compositor/nodes/COM_ChromaMatteNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_ColorBalanceNode.cpp (+70, -0) (View)
/source/blender/compositor/nodes/COM_ColorBalanceNode.h (+39, -0) (View)
/source/blender/compositor/nodes/COM_ColorCorrectionNode.cpp (+44, -0) (View)
/source/blender/compositor/nodes/COM_ColorCorrectionNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_ColorCurveNode.cpp (+46, -0) (View)
/source/blender/compositor/nodes/COM_ColorCurveNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_ColorMatteNode.cpp (+68, -0) (View)
/source/blender/compositor/nodes/COM_ColorMatteNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_ColorNode.cpp (+40, -0) (View)
/source/blender/compositor/nodes/COM_ColorNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_ColorRampNode.cpp (+52, -0) (View)
/source/blender/compositor/nodes/COM_ColorRampNode.h (+39, -0) (View)
/source/blender/compositor/nodes/COM_ColorSpillNode.cpp (+57, -0) (View)
/source/blender/compositor/nodes/COM_ColorSpillNode.h (+39, -0) (View)
/source/blender/compositor/nodes/COM_ColorToBWNode.cpp (+41, -0) (View)
/source/blender/compositor/nodes/COM_ColorToBWNode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_CombineHSVANode.cpp (+45, -0) (View)
/source/blender/compositor/nodes/COM_CombineHSVANode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_CombineRGBANode.cpp (+64, -0) (View)
/source/blender/compositor/nodes/COM_CombineRGBANode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_CombineYCCANode.cpp (+44, -0) (View)
/source/blender/compositor/nodes/COM_CombineYCCANode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_CombineYUVANode.cpp (+39, -0) (View)
/source/blender/compositor/nodes/COM_CombineYUVANode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_CompositorNode.cpp (+44, -0) (View)
/source/blender/compositor/nodes/COM_CompositorNode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_ConvertAlphaNode.cpp (+44, -0) (View)
/source/blender/compositor/nodes/COM_ConvertAlphaNode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_CropNode.cpp (+49, -0) (View)
/source/blender/compositor/nodes/COM_CropNode.h (+36, -0) (View)
/source/blender/compositor/nodes/COM_DefocusNode.cpp (+114, -0) (View)
/source/blender/compositor/nodes/COM_DefocusNode.h (+39, -0) (View)
/source/blender/compositor/nodes/COM_DifferenceMatteNode.cpp (+53, -0) (View)
/source/blender/compositor/nodes/COM_DifferenceMatteNode.h (+39, -0) (View)
/source/blender/compositor/nodes/COM_DilateErodeNode.cpp (+48, -0) (View)
/source/blender/compositor/nodes/COM_DilateErodeNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_DirectionalBlurNode.cpp (+42, -0) (View)
/source/blender/compositor/nodes/COM_DirectionalBlurNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_DisplaceNode.cpp (+46, -0) (View)
/source/blender/compositor/nodes/COM_DisplaceNode.h (+36, -0) (View)
/source/blender/compositor/nodes/COM_DistanceMatteNode.cpp (+60, -0) (View)
/source/blender/compositor/nodes/COM_DistanceMatteNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_DoubleEdgeMaskNode.cpp (+45, -0) (View)
/source/blender/compositor/nodes/COM_DoubleEdgeMaskNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_EllipseMaskNode.cpp (+43, -0) (View)
/source/blender/compositor/nodes/COM_EllipseMaskNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_FilterNode.cpp (+82, -0) (View)
/source/blender/compositor/nodes/COM_FilterNode.h (+39, -0) (View)
/source/blender/compositor/nodes/COM_FlipNode.cpp (+55, -0) (View)
/source/blender/compositor/nodes/COM_FlipNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_GammaNode.cpp (+40, -0) (View)
/source/blender/compositor/nodes/COM_GammaNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_GlareNode.cpp (+130, -0) (View)
/source/blender/compositor/nodes/COM_GlareNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_GroupNode.cpp (+73, -0) (View)
/source/blender/compositor/nodes/COM_GroupNode.h (+57, -0) (View)
/source/blender/compositor/nodes/COM_HueSaturationValueCorrectNode.cpp (+71, -0) (View)
/source/blender/compositor/nodes/COM_HueSaturationValueCorrectNode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_HueSaturationValueNode.cpp (+70, -0) (View)
/source/blender/compositor/nodes/COM_HueSaturationValueNode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_IDMaskNode.cpp (+51, -0) (View)
/source/blender/compositor/nodes/COM_IDMaskNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_ImageNode.cpp (+152, -0) (View)
/source/blender/compositor/nodes/COM_ImageNode.h (+44, -0) (View)
/source/blender/compositor/nodes/COM_InvertNode.cpp (+44, -0) (View)
/source/blender/compositor/nodes/COM_InvertNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_LensDistortionNode.cpp (+60, -0) (View)
/source/blender/compositor/nodes/COM_LensDistortionNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_LuminanceMatteNode.cpp (+61, -0) (View)
/source/blender/compositor/nodes/COM_LuminanceMatteNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_MapUVNode.cpp (+43, -0) (View)
/source/blender/compositor/nodes/COM_MapUVNode.h (+36, -0) (View)
/source/blender/compositor/nodes/COM_MapValueNode.cpp (+42, -0) (View)
/source/blender/compositor/nodes/COM_MapValueNode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_MathNode.cpp (+93, -0) (View)
/source/blender/compositor/nodes/COM_MathNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_MixNode.cpp (+133, -0) (View)
/source/blender/compositor/nodes/COM_MixNode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_MovieClipNode.cpp (+121, -0) (View)
/source/blender/compositor/nodes/COM_MovieClipNode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_MovieDistortionNode.cpp (+46, -0) (View)
/source/blender/compositor/nodes/COM_MovieDistortionNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_MuteNode.cpp (+98, -0) (View)
/source/blender/compositor/nodes/COM_MuteNode.h (+40, -0) (View)
/source/blender/compositor/nodes/COM_NormalizeNode.cpp (+38, -0) (View)
/source/blender/compositor/nodes/COM_NormalizeNode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_NormalNode.cpp (+57, -0) (View)
/source/blender/compositor/nodes/COM_NormalNode.h (+39, -0) (View)
/source/blender/compositor/nodes/COM_OutputFileNode.cpp (+91, -0) (View)
/source/blender/compositor/nodes/COM_OutputFileNode.h (+40, -0) (View)
/source/blender/compositor/nodes/COM_RenderLayersNode.cpp (+114, -0) (View)
/source/blender/compositor/nodes/COM_RenderLayersNode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_RotateNode.cpp (+62, -0) (View)
/source/blender/compositor/nodes/COM_RotateNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_ScaleNode.cpp (+88, -0) (View)
/source/blender/compositor/nodes/COM_ScaleNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_SeparateHSVANode.cpp (+44, -0) (View)
/source/blender/compositor/nodes/COM_SeparateHSVANode.h (+39, -0) (View)
/source/blender/compositor/nodes/COM_SeparateRGBANode.cpp (+72, -0) (View)
/source/blender/compositor/nodes/COM_SeparateRGBANode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_SeparateYCCANode.cpp (+46, -0) (View)
/source/blender/compositor/nodes/COM_SeparateYCCANode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_SeparateYUVANode.cpp (+42, -0) (View)
/source/blender/compositor/nodes/COM_SeparateYUVANode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_SetAlphaNode.cpp (+36, -0) (View)
/source/blender/compositor/nodes/COM_SetAlphaNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_SocketProxyNode.cpp (+95, -0) (View)
/source/blender/compositor/nodes/COM_SocketProxyNode.h (+46, -0) (View)
/source/blender/compositor/nodes/COM_SplitViewerNode.cpp (+51, -0) (View)
/source/blender/compositor/nodes/COM_SplitViewerNode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_Stabilize2dNode.cpp (+89, -0) (View)
/source/blender/compositor/nodes/COM_Stabilize2dNode.h (+34, -0) (View)
/source/blender/compositor/nodes/COM_SwitchNode.cpp (+46, -0) (View)
/source/blender/compositor/nodes/COM_SwitchNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_TextureNode.cpp (+51, -0) (View)
/source/blender/compositor/nodes/COM_TextureNode.h (+34, -0) (View)
/source/blender/compositor/nodes/COM_TimeNode.cpp (+59, -0) (View)
/source/blender/compositor/nodes/COM_TimeNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_TonemapNode.cpp (+41, -0) (View)
/source/blender/compositor/nodes/COM_TonemapNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_TransformNode.cpp (+79, -0) (View)
/source/blender/compositor/nodes/COM_TransformNode.h (+34, -0) (View)
/source/blender/compositor/nodes/COM_TranslateNode.cpp (+45, -0) (View)
/source/blender/compositor/nodes/COM_TranslateNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_ValueNode.cpp (+40, -0) (View)
/source/blender/compositor/nodes/COM_ValueNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_VectorBlurNode.cpp (+47, -0) (View)
/source/blender/compositor/nodes/COM_VectorBlurNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_VectorCurveNode.cpp (+42, -0) (View)
/source/blender/compositor/nodes/COM_VectorCurveNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_ViewerNode.cpp (+56, -0) (View)
/source/blender/compositor/nodes/COM_ViewerNode.h (+37, -0) (View)
/source/blender/compositor/nodes/COM_ViewLevelsNode.cpp (+67, -0) (View)
/source/blender/compositor/nodes/COM_ViewLevelsNode.h (+38, -0) (View)
/source/blender/compositor/nodes/COM_ZCombineNode.cpp (+67, -0) (View)
/source/blender/compositor/nodes/COM_ZCombineNode.h (+38, -0) (View)
/source/blender/compositor/operations/COM_AlphaOverKeyOperation.cpp (+60, -0) (View)
/source/blender/compositor/operations/COM_AlphaOverKeyOperation.h (+44, -0) (View)
/source/blender/compositor/operations/COM_AlphaOverMixedOperation.cpp (+63, -0) (View)
/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h (+48, -0) (View)
/source/blender/compositor/operations/COM_AlphaOverPremultiplyOperation.cpp (+61, -0) (View)
/source/blender/compositor/operations/COM_AlphaOverPremultiplyOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_AntiAliasOperation.cpp (+105, -0) (View)
/source/blender/compositor/operations/COM_AntiAliasOperation.h (+61, -0) (View)
/source/blender/compositor/operations/COM_BilateralBlurOperation.cpp (+121, -0) (View)
/source/blender/compositor/operations/COM_BilateralBlurOperation.h (+57, -0) (View)
/source/blender/compositor/operations/COM_BlurBaseOperation.cpp (+106, -0) (View)
/source/blender/compositor/operations/COM_BlurBaseOperation.h (+58, -0) (View)
/source/blender/compositor/operations/COM_BokehBlurOperation.cpp (+167, -0) (View)
/source/blender/compositor/operations/COM_BokehBlurOperation.h (+60, -0) (View)
/source/blender/compositor/operations/COM_BokehImageOperation.cpp (+122, -0) (View)
/source/blender/compositor/operations/COM_BokehImageOperation.h (+67, -0) (View)
/source/blender/compositor/operations/COM_BoxMaskOperation.cpp (+119, -0) (View)
/source/blender/compositor/operations/COM_BoxMaskOperation.h (+65, -0) (View)
/source/blender/compositor/operations/COM_BrightnessOperation.cpp (+80, -0) (View)
/source/blender/compositor/operations/COM_BrightnessOperation.h (+56, -0) (View)
/source/blender/compositor/operations/COM_CalculateMeanOperation.cpp (+129, -0) (View)
/source/blender/compositor/operations/COM_CalculateMeanOperation.h (+69, -0) (View)
/source/blender/compositor/operations/COM_CalculateStandardDeviationOperation.cpp (+97, -0) (View)
/source/blender/compositor/operations/COM_CalculateStandardDeviationOperation.h (+47, -0) (View)
/source/blender/compositor/operations/COM_ChangeHSVOperation.cpp (+54, -0) (View)
/source/blender/compositor/operations/COM_ChangeHSVOperation.h (+59, -0) (View)
/source/blender/compositor/operations/COM_ChannelMatteOperation.cpp (+121, -0) (View)
/source/blender/compositor/operations/COM_ChannelMatteOperation.h (+76, -0) (View)
/source/blender/compositor/operations/COM_ChromaMatteOperation.cpp (+101, -0) (View)
/source/blender/compositor/operations/COM_ChromaMatteOperation.h (+52, -0) (View)
/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.cpp (+75, -0) (View)
/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h (+81, -0) (View)
/source/blender/compositor/operations/COM_ColorBalanceLGGOperation.cpp (+80, -0) (View)
/source/blender/compositor/operations/COM_ColorBalanceLGGOperation.h (+81, -0) (View)
/source/blender/compositor/operations/COM_ColorCorrectionOperation.cpp (+145, -0) (View)
/source/blender/compositor/operations/COM_ColorCorrectionOperation.h (+64, -0) (View)
/source/blender/compositor/operations/COM_ColorCurveOperation.cpp (+99, -0) (View)
/source/blender/compositor/operations/COM_ColorCurveOperation.h (+56, -0) (View)
/source/blender/compositor/operations/COM_ColorMatteOperation.cpp (+84, -0) (View)
/source/blender/compositor/operations/COM_ColorMatteOperation.h (+52, -0) (View)
/source/blender/compositor/operations/COM_ColorRampOperation.cpp (+57, -0) (View)
/source/blender/compositor/operations/COM_ColorRampOperation.h (+57, -0) (View)
/source/blender/compositor/operations/COM_ColorSpillOperation.cpp (+118, -0) (View)
/source/blender/compositor/operations/COM_ColorSpillOperation.h (+64, -0) (View)
/source/blender/compositor/operations/COM_CombineChannelsOperation.cpp (+76, -0) (View)
/source/blender/compositor/operations/COM_CombineChannelsOperation.h (+42, -0) (View)
/source/blender/compositor/operations/COM_CompositorOperation.cpp (+127, -0) (View)
/source/blender/compositor/operations/COM_CompositorOperation.h (+69, -0) (View)
/source/blender/compositor/operations/COM_ConvertColorProfileOperation.cpp (+51, -0) (View)
/source/blender/compositor/operations/COM_ConvertColorProfileOperation.h (+78, -0) (View)
/source/blender/compositor/operations/COM_ConvertColorToBWOperation.cpp (+47, -0) (View)
/source/blender/compositor/operations/COM_ConvertColorToBWOperation.h (+60, -0) (View)
/source/blender/compositor/operations/COM_ConvertColorToVectorOperation.cpp (+45, -0) (View)
/source/blender/compositor/operations/COM_ConvertColorToVectorOperation.h (+59, -0) (View)
/source/blender/compositor/operations/COM_ConvertColourToValueProg.cpp (+47, -0) (View)
/source/blender/compositor/operations/COM_ConvertColourToValueProg.h (+59, -0) (View)
/source/blender/compositor/operations/COM_ConvertDepthToRadiusOperation.cpp (+103, -0) (View)
/source/blender/compositor/operations/COM_ConvertDepthToRadiusOperation.h (+72, -0) (View)
/source/blender/compositor/operations/COM_ConvertHSVToRGBOperation.cpp (+50, -0) (View)
/source/blender/compositor/operations/COM_ConvertHSVToRGBOperation.h (+59, -0) (View)
/source/blender/compositor/operations/COM_ConvertKeyToPremulOperation.cpp (+57, -0) (View)
/source/blender/compositor/operations/COM_ConvertKeyToPremulOperation.h (+49, -0) (View)
/source/blender/compositor/operations/COM_ConvertPremulToKeyOperation.cpp (+64, -0) (View)
/source/blender/compositor/operations/COM_ConvertPremulToKeyOperation.h (+48, -0) (View)
/source/blender/compositor/operations/COM_ConvertRGBToHSVOperation.cpp (+49, -0) (View)
/source/blender/compositor/operations/COM_ConvertRGBToHSVOperation.h (+60, -0) (View)
/source/blender/compositor/operations/COM_ConvertRGBToYCCOperation.cpp (+72, -0) (View)
/source/blender/compositor/operations/COM_ConvertRGBToYCCOperation.h (+68, -0) (View)
/source/blender/compositor/operations/COM_ConvertRGBToYUVOperation.cpp (+48, -0) (View)
/source/blender/compositor/operations/COM_ConvertRGBToYUVOperation.h (+59, -0) (View)
/source/blender/compositor/operations/COM_ConvertValueToColourProg.cpp (+49, -0) (View)
/source/blender/compositor/operations/COM_ConvertValueToColourProg.h (+53, -0) (View)
/source/blender/compositor/operations/COM_ConvertValueToVectorOperation.cpp (+50, -0) (View)
/source/blender/compositor/operations/COM_ConvertValueToVectorOperation.h (+59, -0) (View)
/source/blender/compositor/operations/COM_ConvertVectorToColorOperation.cpp (+46, -0) (View)
/source/blender/compositor/operations/COM_ConvertVectorToColorOperation.h (+59, -0) (View)
/source/blender/compositor/operations/COM_ConvertVectorToValueOperation.cpp (+47, -0) (View)
/source/blender/compositor/operations/COM_ConvertVectorToValueOperation.h (+59, -0) (View)
/source/blender/compositor/operations/COM_ConvertYCCToRGBOperation.cpp (+72, -0) (View)
/source/blender/compositor/operations/COM_ConvertYCCToRGBOperation.h (+68, -0) (View)
/source/blender/compositor/operations/COM_ConvertYUVToRGBOperation.cpp (+49, -0) (View)
/source/blender/compositor/operations/COM_ConvertYUVToRGBOperation.h (+58, -0) (View)
/source/blender/compositor/operations/COM_ConvolutionEdgeFilterOperation.cpp (+98, -0) (View)
/source/blender/compositor/operations/COM_ConvolutionEdgeFilterOperation.h (+34, -0) (View)
/source/blender/compositor/operations/COM_ConvolutionFilterOperation.cpp (+142, -0) (View)
/source/blender/compositor/operations/COM_ConvolutionFilterOperation.h (+48, -0) (View)
/source/blender/compositor/operations/COM_CropOperation.cpp (+115, -0) (View)
/source/blender/compositor/operations/COM_CropOperation.h (+63, -0) (View)
/source/blender/compositor/operations/COM_CurveBaseOperation.cpp (+40, -0) (View)
/source/blender/compositor/operations/COM_CurveBaseOperation.h (+44, -0) (View)
/source/blender/compositor/operations/COM_DifferenceMatteOperation.cpp (+88, -0) (View)
/source/blender/compositor/operations/COM_DifferenceMatteOperation.h (+53, -0) (View)
/source/blender/compositor/operations/COM_DilateErodeOperation.cpp (+159, -0) (View)
/source/blender/compositor/operations/COM_DilateErodeOperation.h (+70, -0) (View)
/source/blender/compositor/operations/COM_DirectionalBlurOperation.cpp (+120, -0) (View)
/source/blender/compositor/operations/COM_DirectionalBlurOperation.h (+59, -0) (View)
/source/blender/compositor/operations/COM_DisplaceOperation.cpp (+151, -0) (View)
/source/blender/compositor/operations/COM_DisplaceOperation.h (+63, -0) (View)
/source/blender/compositor/operations/COM_DisplaceSimpleOperation.cpp (+131, -0) (View)
/source/blender/compositor/operations/COM_DisplaceSimpleOperation.h (+63, -0) (View)
/source/blender/compositor/operations/COM_DistanceMatteOperation.cpp (+90, -0) (View)
/source/blender/compositor/operations/COM_DistanceMatteOperation.h (+52, -0) (View)
/source/blender/compositor/operations/COM_DotproductOperation.cpp (+55, -0) (View)
/source/blender/compositor/operations/COM_DotproductOperation.h (+41, -0) (View)
/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.cpp (+1301, -0) (View)
/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h (+64, -0) (View)
/source/blender/compositor/operations/COM_EllipseMaskOperation.cpp (+123, -0) (View)
/source/blender/compositor/operations/COM_EllipseMaskOperation.h (+65, -0) (View)
/source/blender/compositor/operations/COM_FastGaussianBlurOperation.cpp (+205, -0) (View)
/source/blender/compositor/operations/COM_FastGaussianBlurOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_FlipOperation.cpp (+75, -0) (View)
/source/blender/compositor/operations/COM_FlipOperation.h (+44, -0) (View)
/source/blender/compositor/operations/COM_FogGlowImageOperation.cpp (+51, -0) (View)
/source/blender/compositor/operations/COM_FogGlowImageOperation.h (+39, -0) (View)
/source/blender/compositor/operations/COM_GammaCorrectOperation.cpp (+106, -0) (View)
/source/blender/compositor/operations/COM_GammaCorrectOperation.h (+80, -0) (View)
/source/blender/compositor/operations/COM_GammaOperation.cpp (+60, -0) (View)
/source/blender/compositor/operations/COM_GammaOperation.h (+54, -0) (View)
/source/blender/compositor/operations/COM_GaussianBokehBlurOperation.cpp (+182, -0) (View)
/source/blender/compositor/operations/COM_GaussianBokehBlurOperation.h (+51, -0) (View)
/source/blender/compositor/operations/COM_GaussianXBlurOperation.cpp (+135, -0) (View)
/source/blender/compositor/operations/COM_GaussianXBlurOperation.h (+49, -0) (View)
/source/blender/compositor/operations/COM_GaussianYBlurOperation.cpp (+132, -0) (View)
/source/blender/compositor/operations/COM_GaussianYBlurOperation.h (+49, -0) (View)
/source/blender/compositor/operations/COM_GlareBaseOperation.cpp (+81, -0) (View)
/source/blender/compositor/operations/COM_GlareBaseOperation.h (+70, -0) (View)
/source/blender/compositor/operations/COM_GlareSimpleStarOperation.cpp (+114, -0) (View)
/source/blender/compositor/operations/COM_GlareSimpleStarOperation.h (+35, -0) (View)
/source/blender/compositor/operations/COM_GlareStreaksOperation.cpp (+95, -0) (View)
/source/blender/compositor/operations/COM_GlareStreaksOperation.h (+35, -0) (View)
/source/blender/compositor/operations/COM_GlareThresholdOperation.cpp (+52, -0) (View)
/source/blender/compositor/operations/COM_GlareThresholdOperation.h (+57, -0) (View)
/source/blender/compositor/operations/COM_HueSaturationValueCorrectOperation.cpp (+78, -0) (View)
/source/blender/compositor/operations/COM_HueSaturationValueCorrectOperation.h (+53, -0) (View)
/source/blender/compositor/operations/COM_IDMaskOperation.cpp (+49, -0) (View)
/source/blender/compositor/operations/COM_IDMaskOperation.h (+57, -0) (View)
/source/blender/compositor/operations/COM_ImageOperation.cpp (+163, -0) (View)
/source/blender/compositor/operations/COM_ImageOperation.h (+94, -0) (View)
/source/blender/compositor/operations/COM_InvertOperation.cpp (+75, -0) (View)
/source/blender/compositor/operations/COM_InvertOperation.h (+60, -0) (View)
/source/blender/compositor/operations/COM_LensGhostOperation.cpp (+815, -0) (View)
/source/blender/compositor/operations/COM_LensGhostOperation.h (+82, -0) (View)
/source/blender/compositor/operations/COM_LensGlowImageOperation.cpp (+56, -0) (View)
/source/blender/compositor/operations/COM_LensGlowImageOperation.h (+52, -0) (View)
/source/blender/compositor/operations/COM_LensGlowOperation.cpp (+58, -0) (View)
/source/blender/compositor/operations/COM_LensGlowOperation.h (+56, -0) (View)
/source/blender/compositor/operations/COM_LuminanceMatteOperation.cpp (+83, -0) (View)
/source/blender/compositor/operations/COM_LuminanceMatteOperation.h (+51, -0) (View)
/source/blender/compositor/operations/COM_MapUVOperation.cpp (+158, -0) (View)
/source/blender/compositor/operations/COM_MapUVOperation.h (+62, -0) (View)
/source/blender/compositor/operations/COM_MapValueOperation.cpp (+56, -0) (View)
/source/blender/compositor/operations/COM_MapValueOperation.h (+66, -0) (View)
/source/blender/compositor/operations/COM_MathBaseOperation.cpp (+261, -0) (View)
/source/blender/compositor/operations/COM_MathBaseOperation.h (+150, -0) (View)
/source/blender/compositor/operations/COM_MixAddOperation.cpp (+49, -0) (View)
/source/blender/compositor/operations/COM_MixAddOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixBaseOperation.cpp (+96, -0) (View)
/source/blender/compositor/operations/COM_MixBaseOperation.h (+67, -0) (View)
/source/blender/compositor/operations/COM_MixBlendOperation.cpp (+49, -0) (View)
/source/blender/compositor/operations/COM_MixBlendOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixBurnOperation.cpp (+86, -0) (View)
/source/blender/compositor/operations/COM_MixBurnOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixColorOperation.cpp (+61, -0) (View)
/source/blender/compositor/operations/COM_MixColorOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixDarkenOperation.cpp (+56, -0) (View)
/source/blender/compositor/operations/COM_MixDarkenOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixDifferenceOperation.cpp (+49, -0) (View)
/source/blender/compositor/operations/COM_MixDifferenceOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixDivideOperation.cpp (+59, -0) (View)
/source/blender/compositor/operations/COM_MixDivideOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixDodgeOperation.cpp (+91, -0) (View)
/source/blender/compositor/operations/COM_MixDodgeOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixHueOperation.cpp (+60, -0) (View)
/source/blender/compositor/operations/COM_MixHueOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixLightenOperation.cpp (+54, -0) (View)
/source/blender/compositor/operations/COM_MixLightenOperation.h (+44, -0) (View)
/source/blender/compositor/operations/COM_MixLinearLightOperation.cpp (+56, -0) (View)
/source/blender/compositor/operations/COM_MixLinearLightOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixMultiplyOperation.cpp (+49, -0) (View)
/source/blender/compositor/operations/COM_MixMultiplyOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixOverlayOperation.cpp (+65, -0) (View)
/source/blender/compositor/operations/COM_MixOverlayOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixSaturationOperation.cpp (+56, -0) (View)
/source/blender/compositor/operations/COM_MixSaturationOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixScreenOperation.cpp (+50, -0) (View)
/source/blender/compositor/operations/COM_MixScreenOperation.h (+44, -0) (View)
/source/blender/compositor/operations/COM_MixSoftLightOperation.cpp (+55, -0) (View)
/source/blender/compositor/operations/COM_MixSoftLightOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixSubtractOperation.cpp (+47, -0) (View)
/source/blender/compositor/operations/COM_MixSubtractOperation.h (+45, -0) (View)
/source/blender/compositor/operations/COM_MixValueOperation.cpp (+54, -0) (View)
/source/blender/compositor/operations/COM_MixValueOperation.h (+44, -0) (View)
/source/blender/compositor/operations/COM_MovieClipAttributeOperation.cpp (+70, -0) (View)
/source/blender/compositor/operations/COM_MovieClipAttributeOperation.h (+61, -0) (View)
/source/blender/compositor/operations/COM_MovieClipOperation.cpp (+100, -0) (View)
/source/blender/compositor/operations/COM_MovieClipOperation.h (+64, -0) (View)
/source/blender/compositor/operations/COM_MovieDistortionOperation.cpp (+95, -0) (View)
/source/blender/compositor/operations/COM_MovieDistortionOperation.h (+113, -0) (View)
/source/blender/compositor/operations/COM_MultilayerImageOperation.cpp (+105, -0) (View)
/source/blender/compositor/operations/COM_MultilayerImageOperation.h (+68, -0) (View)
/source/blender/compositor/operations/COM_NormalizeOperation.cpp (+114, -0) (View)
/source/blender/compositor/operations/COM_NormalizeOperation.h (+69, -0) (View)
/source/blender/compositor/operations/COM_OpenCLKernels.cl (+10, -0) (View)
/source/blender/compositor/operations/COM_OpenCLKernels.cl.cpp (+15, -0) (View)
/source/blender/compositor/operations/COM_OutputFileOperation.cpp (+263, -0) (View)
/source/blender/compositor/operations/COM_OutputFileOperation.h (+89, -0) (View)
/source/blender/compositor/operations/COM_PreviewOperation.cpp (+136, -0) (View)
/source/blender/compositor/operations/COM_PreviewOperation.h (+56, -0) (View)
/source/blender/compositor/operations/COM_ProjectorLensDistortionOperation.cpp (+77, -0) (View)
/source/blender/compositor/operations/COM_ProjectorLensDistortionOperation.h (+64, -0) (View)
/source/blender/compositor/operations/COM_QualityStepHelper.cpp (+71, -0) (View)
/source/blender/compositor/operations/COM_QualityStepHelper.h (+53, -0) (View)
/source/blender/compositor/operations/COM_ReadBufferOperation.cpp (+77, -0) (View)
/source/blender/compositor/operations/COM_ReadBufferOperation.h (+51, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersAlphaProg.cpp (+49, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersAlphaProg.h (+35, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersAOOperation.cpp (+29, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersAOOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersBaseProg.cpp (+138, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersBaseProg.h (+99, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersColorOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersColorOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersCyclesOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersCyclesOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersDepthProg.cpp (+29, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersDepthProg.h (+34, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersDiffuseOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersDiffuseOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersEmitOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersEmitOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersEnvironmentOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersEnvironmentOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersImageProg.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersImageProg.h (+34, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersIndirectOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersIndirectOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersMaterialIndexOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersMaterialIndexOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersMistOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersMistOperation.h (+11, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersNormalOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersNormalOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersObjectIndexOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersObjectIndexOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersReflectionOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersReflectionOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersRefractionOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersRefractionOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersShadowOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersShadowOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersSpecularOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersSpecularOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersSpeedOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersSpeedOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersUVOperation.cpp (+28, -0) (View)
/source/blender/compositor/operations/COM_RenderLayersUVOperation.h (+33, -0) (View)
/source/blender/compositor/operations/COM_RotateOperation.cpp (+99, -0) (View)
/source/blender/compositor/operations/COM_RotateOperation.h (+46, -0) (View)
/source/blender/compositor/operations/COM_ScaleOperation.cpp (+212, -0) (View)
/source/blender/compositor/operations/COM_ScaleOperation.h (+77, -0) (View)
/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.cpp (+172, -0) (View)
/source/blender/compositor/operations/COM_ScreenLensDistortionOperation.h (+74, -0) (View)
/source/blender/compositor/operations/COM_SeparateChannelOperation.cpp (+47, -0) (View)
/source/blender/compositor/operations/COM_SeparateChannelOperation.h (+42, -0) (View)
/source/blender/compositor/operations/COM_SetAlphaOperation.cpp (+55, -0) (View)
/source/blender/compositor/operations/COM_SetAlphaOperation.h (+51, -0) (View)
/source/blender/compositor/operations/COM_SetColorOperation.cpp (+42, -0) (View)
/source/blender/compositor/operations/COM_SetColorOperation.h (+64, -0) (View)
/source/blender/compositor/operations/COM_SetSamplerOperation.cpp (+43, -0) (View)
/source/blender/compositor/operations/COM_SetSamplerOperation.h (+51, -0) (View)
/source/blender/compositor/operations/COM_SetValueOperation.cpp (+39, -0) (View)
/source/blender/compositor/operations/COM_SetValueOperation.h (+54, -0) (View)
/source/blender/compositor/operations/COM_SetVectorOperation.cpp (+49, -0) (View)
/source/blender/compositor/operations/COM_SetVectorOperation.h (+68, -0) (View)
/source/blender/compositor/operations/COM_SocketProxyOperation.cpp (+45, -0) (View)
/source/blender/compositor/operations/COM_SocketProxyOperation.h (+39, -0) (View)
/source/blender/compositor/operations/COM_SplitViewerOperation.cpp (+109, -0) (View)
/source/blender/compositor/operations/COM_SplitViewerOperation.h (+44, -0) (View)
/source/blender/compositor/operations/COM_TextureOperation.cpp (+109, -0) (View)
/source/blender/compositor/operations/COM_TextureOperation.h (+81, -0) (View)
/source/blender/compositor/operations/COM_TonemapOperation.cpp (+171, -0) (View)
/source/blender/compositor/operations/COM_TonemapOperation.h (+103, -0) (View)
/source/blender/compositor/operations/COM_TranslateOperation.cpp (+72, -0) (View)
/source/blender/compositor/operations/COM_TranslateOperation.h (+47, -0) (View)
/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.cpp (+149, -0) (View)
/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h (+62, -0) (View)
/source/blender/compositor/operations/COM_VectorBlurOperation.cpp (+121, -0) (View)
/source/blender/compositor/operations/COM_VectorBlurOperation.h (+73, -0) (View)
/source/blender/compositor/operations/COM_VectorCurveOperation.cpp (+60, -0) (View)
/source/blender/compositor/operations/COM_VectorCurveOperation.h (+52, -0) (View)
/source/blender/compositor/operations/COM_ViewerBaseOperation.cpp (+99, -0) (View)
/source/blender/compositor/operations/COM_ViewerBaseOperation.h (+71, -0) (View)
/source/blender/compositor/operations/COM_ViewerOperation.cpp (+114, -0) (View)
/source/blender/compositor/operations/COM_ViewerOperation.h (+41, -0) (View)
/source/blender/compositor/operations/COM_WriteBufferOperation.cpp (+169, -0) (View)
/source/blender/compositor/operations/COM_WriteBufferOperation.h (+52, -0) (View)
/source/blender/compositor/operations/COM_ZCombineOperation.cpp (+94, -0) (View)
/source/blender/compositor/operations/COM_ZCombineOperation.h (+57, -0) (View)
/source/blender/compositor/SConscript (+14, -0) (View)
/source/blender/nodes/composite/nodes/node_composite_bokehblur.c (+60, -0) (View)
/source/blender/nodes/composite/nodes/node_composite_bokehimage.c (+66, -0) (View)
/source/blender/nodes/composite/nodes/node_composite_boxmask.c (+75, -0) (View)
/source/blender/nodes/composite/nodes/node_composite_colorcorrection.c (+89, -0) (View)
/source/blender/nodes/composite/nodes/node_composite_ellipsemask.c (+75, -0) (View)
/source/blender/nodes/composite/nodes/node_composite_switch.c (+58, -0) (View)
/source/blender/opencl/CMakeLists.txt (+39, -0) (View)
/source/blender/opencl/intern/clew.c (+311, -0) (View)
/source/blender/opencl/intern/clew.h (+1317, -0) (View)
/source/blender/opencl/intern/OCL_opencl.c (+37, -0) (View)
/source/blender/opencl/OCL_opencl.h (+37, -0) (View)
/source/blender/opencl/SConscript (+8, -0) (View)

463 Modified Paths:

/build_files/cmake/macros.cmake (+2, -1) (Diff)
/build_files/cmake/packaging.cmake (+2, -2) (Diff)
/build_files/package_spec/rpm/blender.spec.in (+25, -9) (Diff)
/build_files/scons/config/win64-mingw-config.py (+2, -2) (Diff)
/CMakeLists.txt (+30, -12) (Diff)
/extern/bullet2/readme.txt (+4, -0) (Diff)
/extern/bullet2/src/LinearMath/btSerializer.h (+14, -14) (Diff)
/GNUmakefile (+1, -1) (Diff)
/intern/audaspace/CMakeLists.txt (+6, -0) (Diff)
/intern/cycles/blender/blender_session.cpp (+1, -0) (Diff)
/intern/cycles/kernel/osl/nodes/node_camera.osl (+1, -1) (Diff)
/intern/cycles/kernel/svm/svm_tex_coord.h (+3, -3) (Diff)
/intern/cycles/render/film.cpp (+0, -1) (Diff)
/intern/elbeem/CMakeLists.txt (+1, -0) (Diff)
/intern/elbeem/intern/ntl_blenderdumper.cpp (+1, -4) (Diff)
/intern/elbeem/intern/ntl_geometryobject.cpp (+1, -1) (Diff)
/intern/elbeem/intern/ntl_vector3dim.h (+12, -7) (Diff)
/intern/elbeem/intern/ntl_world.cpp (+0, -3) (Diff)
/intern/elbeem/intern/particletracer.cpp (+1, -3) (Diff)
/intern/elbeem/intern/solver_adap.cpp (+0, -3) (Diff)
/intern/elbeem/intern/solver_init.cpp (+2, -3) (Diff)
/intern/elbeem/intern/solver_main.cpp (+2, -2) (Diff)
/intern/elbeem/intern/solver_relax.h (+1, -1) (Diff)
/intern/elbeem/intern/solver_util.cpp (+2, -4) (Diff)
/intern/ghost/GHOST_C-api.h (+101, -101) (Diff)
/intern/ghost/GHOST_IEvent.h (+7, -3) (Diff)
/intern/ghost/GHOST_IEventConsumer.h (+1, -1) (Diff)
/intern/ghost/GHOST_ISystem.h (+50, -44) (Diff)
/intern/ghost/GHOST_ISystemPaths.h (+13, -11) (Diff)
/intern/ghost/GHOST_ITimerTask.h (+6, -2) (Diff)
/intern/ghost/GHOST_IWindow.h (+22, -22) (Diff)
/intern/ghost/GHOST_Path-api.h (+7, -7) (Diff)
/intern/ghost/GHOST_Rect.h (+18, -15) (Diff)
/intern/ghost/GHOST_Types.h (+43, -43) (Diff)
/intern/ghost/intern/GHOST_Buttons.cpp (+25, -24) (Diff)
/intern/ghost/intern/GHOST_Buttons.h (+3, -3) (Diff)
/intern/ghost/intern/GHOST_C-api.cpp (+199, -199) (Diff)
/intern/ghost/intern/GHOST_CallbackEventConsumer.cpp (+1, -1) (Diff)
/intern/ghost/intern/GHOST_CallbackEventConsumer.h (+5, -5) (Diff)
/intern/ghost/intern/GHOST_DisplayManager.cpp (+21, -21) (Diff)
/intern/ghost/intern/GHOST_DisplayManagerCarbon.cpp (+32, -32) (Diff)
/intern/ghost/intern/GHOST_DisplayManagerCarbon.h (+1, -1) (Diff)
/intern/ghost/intern/GHOST_DisplayManagerNULL.h (+1, -1) (Diff)
/intern/ghost/intern/GHOST_DisplayManagerSDL.cpp (+5, -3) (Diff)
/intern/ghost/intern/GHOST_DisplayManagerSDL.h (+2, -2) (Diff)
/intern/ghost/intern/GHOST_DisplayManagerWin32.cpp (+44, -43) (Diff)
/intern/ghost/intern/GHOST_DisplayManagerX11.cpp (+31, -31) (Diff)
/intern/ghost/intern/GHOST_DisplayManagerX11.h (+24, -24) (Diff)
/intern/ghost/intern/GHOST_DropTargetWin32.cpp (+82, -86) (Diff)
/intern/ghost/intern/GHOST_DropTargetWin32.h (+25, -26) (Diff)
/intern/ghost/intern/GHOST_DropTargetX11.cpp (+15, -15) (Diff)
/intern/ghost/intern/GHOST_DropTargetX11.h (+26, -26) (Diff)
/intern/ghost/intern/GHOST_Event.h (+3, -3) (Diff)
/intern/ghost/intern/GHOST_EventButton.h (+1, -1) (Diff)
/intern/ghost/intern/GHOST_EventCursor.h (+1, -1) (Diff)
/intern/ghost/intern/GHOST_EventDragnDrop.h (+7, -7) (Diff)
/intern/ghost/intern/GHOST_EventKey.h (+4, -4) (Diff)
/intern/ghost/intern/GHOST_EventManager.cpp (+20, -23) (Diff)
/intern/ghost/intern/GHOST_EventManager.h (+18, -18) (Diff)
/intern/ghost/intern/GHOST_EventNDOF.h (+20, -21) (Diff)
/intern/ghost/intern/GHOST_EventPrinter.cpp (+209, -204) (Diff)
/intern/ghost/intern/GHOST_EventPrinter.h (+2, -2) (Diff)
/intern/ghost/intern/GHOST_EventString.h (+4, -3) (Diff)
/intern/ghost/intern/GHOST_EventTrackpad.h (+1, -1) (Diff)
/intern/ghost/intern/GHOST_EventWheel.h (+1, -1) (Diff)
/intern/ghost/intern/GHOST_ISystem.cpp (+24, -24) (Diff)
/intern/ghost/intern/GHOST_ISystemPaths.cpp (+22, -22) (Diff)
/intern/ghost/intern/GHOST_ModifierKeys.cpp (+60, -60) (Diff)
/intern/ghost/intern/GHOST_ModifierKeys.h (+1, -2) (Diff)
/intern/ghost/intern/GHOST_NDOFManager.cpp (+15, -15) (Diff)
/intern/ghost/intern/GHOST_NDOFManager.h (+5, -5) (Diff)
/intern/ghost/intern/GHOST_NDOFManagerWin32.cpp (+1, -1) (Diff)
/intern/ghost/intern/GHOST_NDOFManagerX11.cpp (+4, -4) (Diff)
/intern/ghost/intern/GHOST_Path-api.cpp (+8, -8) (Diff)
/intern/ghost/intern/GHOST_Rect.cpp (+2, -2) (Diff)
/intern/ghost/intern/GHOST_System.cpp (+33, -32) (Diff)
/intern/ghost/intern/GHOST_System.h (+50, -50) (Diff)
/intern/ghost/intern/GHOST_SystemCarbon.cpp (+421, -410) (Diff)
/intern/ghost/intern/GHOST_SystemCarbon.h (+24, -22) (Diff)
/intern/ghost/intern/GHOST_SystemCocoa.h (+30, -28) (Diff)
/intern/ghost/intern/GHOST_SystemNULL.h (+13, -13) (Diff)
/intern/ghost/intern/GHOST_SystemPaths.h (+14, -14) (Diff)
/intern/ghost/intern/GHOST_SystemPathsCarbon.cpp (+9, -9) (Diff)
/intern/ghost/intern/GHOST_SystemPathsCarbon.h (+9, -9) (Diff)
/intern/ghost/intern/GHOST_SystemPathsCocoa.h (+7, -7) (Diff)
/intern/ghost/intern/GHOST_SystemPathsWin32.cpp (+15, -15) (Diff)
/intern/ghost/intern/GHOST_SystemPathsWin32.h (+3, -3) (Diff)
/intern/ghost/intern/GHOST_SystemPathsX11.cpp (+9, -9) (Diff)
/intern/ghost/intern/GHOST_SystemPathsX11.h (+7, -7) (Diff)
/intern/ghost/intern/GHOST_SystemSDL.cpp (+257, -251) (Diff)
/intern/ghost/intern/GHOST_SystemSDL.h (+1, -1) (Diff)
/intern/ghost/intern/GHOST_SystemWin32.cpp (+365, -359) (Diff)
/intern/ghost/intern/GHOST_SystemWin32.h (+31, -31) (Diff)
/intern/ghost/intern/GHOST_SystemX11.cpp (+488, -478) (Diff)
/intern/ghost/intern/GHOST_SystemX11.h (+65, -63) (Diff)
/intern/ghost/intern/GHOST_TaskbarWin32.h (+38, -38) (Diff)
/intern/ghost/intern/GHOST_TimerManager.cpp (+7, -6) (Diff)
/intern/ghost/intern/GHOST_TimerManager.h (+6, -6) (Diff)
/intern/ghost/intern/GHOST_TimerTask.h (+5, -5) (Diff)
/intern/ghost/intern/GHOST_Window.cpp (+25, -24) (Diff)
/intern/ghost/intern/GHOST_Window.h (+31, -25) (Diff)
/intern/ghost/intern/GHOST_WindowCarbon.cpp (+247, -243) (Diff)
/intern/ghost/intern/GHOST_WindowCarbon.h (+38, -34) (Diff)
/intern/ghost/intern/GHOST_WindowCocoa.h (+31, -27) (Diff)
/intern/ghost/intern/GHOST_WindowCocoa.mm (+2, -2) (Diff)
/intern/ghost/intern/GHOST_WindowManager.cpp (+23, -23) (Diff)
/intern/ghost/intern/GHOST_WindowManager.h (+14, -14) (Diff)
/intern/ghost/intern/GHOST_WindowNULL.h (+16, -16) (Diff)
/intern/ghost/intern/GHOST_WindowSDL.cpp (+169, -169) (Diff)
/intern/ghost/intern/GHOST_WindowSDL.h (+14, -8) (Diff)
/intern/ghost/intern/GHOST_WindowWin32.cpp (+382, -375) (Diff)
/intern/ghost/intern/GHOST_WindowWin32.h (+50, -46) (Diff)
/intern/ghost/intern/GHOST_WindowX11.cpp (+423, -426) (Diff)
/intern/ghost/intern/GHOST_WindowX11.h (+136, -126) (Diff)
/intern/ghost/test/gears/GHOST_Test.cpp (+278, -282) (Diff)
/release/scripts/startup/bl_operators/console.py (+3, -1) (Diff)
/release/scripts/startup/bl_operators/image.py (+4, -2) (Diff)
/release/scripts/startup/bl_operators/object.py (+15, -10) (Diff)
/release/scripts/startup/bl_operators/presets.py (+0, -3) (Diff)
/release/scripts/startup/bl_operators/wm.py (+59, -0) (Diff)
/release/scripts/startup/bl_ui/properties_animviz.py (+8, -9) (Diff)
/release/scripts/startup/bl_ui/properties_data_armature.py (+2, -2) (Diff)
/release/scripts/startup/bl_ui/properties_data_bone.py (+0, -3) (Diff)
/release/scripts/startup/bl_ui/properties_data_modifier.py (+2, -0) (Diff)
/release/scripts/startup/bl_ui/properties_object.py (+1, -1) (Diff)
/release/scripts/startup/bl_ui/properties_paint_common.py (+34, -0) (Diff)
/release/scripts/startup/bl_ui/properties_physics_field.py (+0, -1) (Diff)
/release/scripts/startup/bl_ui/properties_scene.py (+14, -9) (Diff)
/release/scripts/startup/bl_ui/properties_texture.py (+6, -9) (Diff)
/release/scripts/startup/bl_ui/space_clip.py (+1, -0) (Diff)
/release/scripts/startup/bl_ui/space_node.py (+20, -0) (Diff)
/release/scripts/startup/bl_ui/space_sequencer.py (+55, -90) (Diff)
/release/scripts/startup/bl_ui/space_text.py (+1, -1) (Diff)
/release/scripts/startup/bl_ui/space_time.py (+1, -1) (Diff)
/release/scripts/startup/bl_ui/space_userpref.py (+1, -0) (Diff)
/release/scripts/startup/bl_ui/space_view3d.py (+13, -11) (Diff)
/release/scripts/startup/bl_ui/space_view3d_toolbar.py (+4, -38) (Diff)
/source/blender/avi/intern/avirgb.c (+1, -1) (Diff)
/source/blender/blenkernel/BKE_ccg.h (+8, -8) (Diff)
/source/blender/blenkernel/BKE_colortools.h (+7, -4) (Diff)
/source/blender/blenkernel/BKE_customdata.h (+2, -2) (Diff)
/source/blender/blenkernel/BKE_image.h (+3, -0) (Diff)
/source/blender/blenkernel/BKE_mesh.h (+2, -2) (Diff)
/source/blender/blenkernel/BKE_node.h (+12, -1) (Diff)
/source/blender/blenkernel/BKE_object.h (+1, -0) (Diff)
/source/blender/blenkernel/BKE_sequencer.h (+4, -4) (Diff)
/source/blender/blenkernel/CMakeLists.txt (+1, -0) (Diff)
/source/blender/blenkernel/intern/action.c (+3, -3) (Diff)
/source/blender/blenkernel/intern/anim.c (+7, -7) (Diff)
/source/blender/blenkernel/intern/armature.c (+16, -15) (Diff)
/source/blender/blenkernel/intern/CCGSubSurf.c (+2, -2) (Diff)
/source/blender/blenkernel/intern/cdderivedmesh.c (+16, -16) (Diff)
/source/blender/blenkernel/intern/cloth.c (+73, -18) (Diff)
/source/blender/blenkernel/intern/collision.c (+207, -1817) (Diff)
/source/blender/blenkernel/intern/colortools.c (+45, -1) (Diff)
/source/blender/blenkernel/intern/context.c (+3, -2) (Diff)
/source/blender/blenkernel/intern/curve.c (+7, -7) (Diff)
/source/blender/blenkernel/intern/deform.c (+2, -2) (Diff)
/source/blender/blenkernel/intern/depsgraph.c (+12, -8) (Diff)
/source/blender/blenkernel/intern/displist.c (+6, -12) (Diff)
/source/blender/blenkernel/intern/dynamicpaint.c (+30, -26) (Diff)
/source/blender/blenkernel/intern/editderivedmesh.c (+7, -7) (Diff)
/source/blender/blenkernel/intern/fcurve.c (+8, -8) (Diff)
/source/blender/blenkernel/intern/font.c (+3, -2) (Diff)
/source/blender/blenkernel/intern/group.c (+3, -3) (Diff)
/source/blender/blenkernel/intern/icons.c (+38, -40) (Diff)
/source/blender/blenkernel/intern/idprop.c (+2, -1) (Diff)
/source/blender/blenkernel/intern/image.c (+18, -2) (Diff)
/source/blender/blenkernel/intern/lattice.c (+14, -10) (Diff)
/source/blender/blenkernel/intern/mball.c (+6, -6) (Diff)
/source/blender/blenkernel/intern/mesh.c (+33, -14) (Diff)
/source/blender/blenkernel/intern/modifier.c (+1, -2) (Diff)
/source/blender/blenkernel/intern/multires.c (+7, -9) (Diff)
/source/blender/blenkernel/intern/nla.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/node.c (+10, -3) (Diff)
/source/blender/blenkernel/intern/object.c (+13, -0) (Diff)
/source/blender/blenkernel/intern/ocean.c (+7, -4) (Diff)
/source/blender/blenkernel/intern/particle.c (+3, -3) (Diff)
/source/blender/blenkernel/intern/particle_system.c (+104, -104) (Diff)
/source/blender/blenkernel/intern/pointcache.c (+4, -4) (Diff)
/source/blender/blenkernel/intern/screen.c (+3, -2) (Diff)
/source/blender/blenkernel/intern/seqeffects.c (+70, -60) (Diff)
/source/blender/blenkernel/intern/sequencer.c (+1, -1) (Diff)
/source/blender/blenkernel/intern/softbody.c (+15, -15) (Diff)
/source/blender/blenkernel/intern/sound.c (+1, -0) (Diff)
/source/blender/blenkernel/intern/subsurf_ccg.c (+8, -8) (Diff)
/source/blender/blenkernel/intern/text.c (+3, -3) (Diff)
/source/blender/blenkernel/intern/tracking.c (+1, -1) (Diff)
/source/blender/blenlib/BLI_ghash.h (+5, -0) (Diff)
/source/blender/blenlib/intern/BLI_args.c (+1, -1) (Diff)
/source/blender/blenlib/intern/BLI_ghash.c (+17, -0) (Diff)
/source/blender/blenlib/intern/BLI_kdopbvh.c (+2, -2) (Diff)
/source/blender/blenlib/intern/fnmatch.c (+1, -1) (Diff)
/source/blender/blenlib/intern/path_util.c (+1, -1) (Diff)
/source/blender/blenlib/intern/pbvh.c (+2, -2) (Diff)
/source/blender/blenlib/intern/uvproject.c (+4, -4) (Diff)
/source/blender/blenlib/intern/winstuff.c (+3, -2) (Diff)
/source/blender/blenloader/intern/readblenentry.c (+1, -1) (Diff)
/source/blender/blenloader/intern/readfile.c (+2251, -2257) (Diff)
/source/blender/blenloader/intern/versioning_250.c (+2, -2) (Diff)
/source/blender/blenloader/intern/versioning_legacy.c (+1, -1) (Diff)
/source/blender/blenloader/intern/writefile.c (+4, -4) (Diff)
/source/blender/bmesh/intern/bmesh_core.c (+1, -1) (Diff)
/source/blender/bmesh/intern/bmesh_mesh.c (+3, -3) (Diff)
/source/blender/bmesh/intern/bmesh_mods.c (+3, -3) (Diff)
/source/blender/bmesh/intern/bmesh_opdefines.c (+1, -1) (Diff)
/source/blender/bmesh/intern/bmesh_operators.c (+2, -2) (Diff)
/source/blender/bmesh/intern/bmesh_polygon.c (+3, -3) (Diff)
/source/blender/bmesh/intern/bmesh_walkers.c (+4, -4) (Diff)
/source/blender/bmesh/intern/bmesh_walkers_impl.c (+4, -4) (Diff)
/source/blender/bmesh/operators/bmo_create.c (+3, -3) (Diff)
/source/blender/bmesh/operators/bmo_dupe.c (+2, -2) (Diff)
/source/blender/bmesh/operators/bmo_hull.c (+37, -53) (Diff)
/source/blender/bmesh/tools/BME_bevel.c (+4, -4) (Diff)
/source/blender/CMakeLists.txt (+2, -0) (Diff)
/source/blender/collada/GeometryExporter.cpp (+60, -1) (Diff)
/source/blender/collada/GeometryExporter.h (+5, -0) (Diff)
/source/blender/collada/MeshImporter.cpp (+230, -30) (Diff)
/source/blender/collada/MeshImporter.h (+16, -0) (Diff)
/source/blender/editors/animation/anim_channels_defines.c (+2, -2) (Diff)
/source/blender/editors/animation/anim_channels_edit.c (+2, -2) (Diff)
/source/blender/editors/animation/anim_draw.c (+1, -1) (Diff)
/source/blender/editors/animation/anim_filter.c (+4, -4) (Diff)
/source/blender/editors/animation/drivers.c (+1, -1) (Diff)
/source/blender/editors/armature/editarmature.c (+5, -5) (Diff)
/source/blender/editors/armature/editarmature_retarget.c (+5, -5) (Diff)
/source/blender/editors/armature/editarmature_sketch.c (+1, -1) (Diff)
/source/blender/editors/armature/poseobject.c (+5, -5) (Diff)
/source/blender/editors/armature/reeb.c (+4, -4) (Diff)
/source/blender/editors/curve/editcurve.c (+2, -2) (Diff)
/source/blender/editors/gpencil/gpencil_paint.c (+1, -1) (Diff)
/source/blender/editors/include/ED_clip.h (+1, -0) (Diff)
/source/blender/editors/include/ED_mesh.h (+12, -0) (Diff)
/source/blender/editors/include/ED_transform.h (+1, -1) (Diff)
/source/blender/editors/interface/interface_draw.c (+30, -8) (Diff)
/source/blender/editors/interface/interface_handlers.c (+88, -46) (Diff)
/source/blender/editors/interface/interface_icons.c (+2, -1) (Diff)
/source/blender/editors/interface/interface_intern.h (+2, -1) (Diff)
/source/blender/editors/interface/interface_layout.c (+1, -1) (Diff)
/source/blender/editors/interface/interface_ops.c (+3, -5) (Diff)
/source/blender/editors/interface/interface_panel.c (+5, -4) (Diff)
/source/blender/editors/interface/interface_regions.c (+16, -7) (Diff)
/source/blender/editors/interface/resources.c (+1, -1) (Diff)
/source/blender/editors/interface/view2d.c (+9, -9) (Diff)
/source/blender/editors/mesh/editface.c (+4, -4) (Diff)
/source/blender/editors/mesh/editmesh_knife.c (+3, -3) (Diff)
/source/blender/editors/mesh/editmesh_select.c (+18, -9) (Diff)
/source/blender/editors/mesh/editmesh_tools.c (+523, -85) (Diff)
/source/blender/editors/mesh/editmesh_utils.c (+46, -0) (Diff)
/source/blender/editors/mesh/mesh_ops.c (+2, -0) (Diff)
/source/blender/editors/object/object_add.c (+5, -5) (Diff)
/source/blender/editors/object/object_bake.c (+1, -1) (Diff)
/source/blender/editors/object/object_constraint.c (+14, -7) (Diff)
/source/blender/editors/object/object_edit.c (+7, -7) (Diff)
/source/blender/editors/object/object_modifier.c (+2, -2) (Diff)
/source/blender/editors/object/object_ops.c (+1, -1) (Diff)
/source/blender/editors/object/object_relations.c (+3, -3) (Diff)
/source/blender/editors/object/object_select.c (+2, -2) (Diff)
/source/blender/editors/object/object_transform.c (+13, -8) (Diff)
/source/blender/editors/physics/physics_fluid.c (+5, -5) (Diff)
/source/blender/editors/render/render_internal.c (+3, -3) (Diff)
/source/blender/editors/render/render_preview.c (+5, -5) (Diff)
/source/blender/editors/render/render_shading.c (+2, -2) (Diff)
/source/blender/editors/render/render_update.c (+1, -1) (Diff)
/source/blender/editors/screen/area.c (+5, -5) (Diff)
/source/blender/editors/screen/screendump.c (+2, -2) (Diff)
/source/blender/editors/screen/screen_edit.c (+8, -8) (Diff)
/source/blender/editors/screen/screen_ops.c (+13, -11) (Diff)
/source/blender/editors/sculpt_paint/paint_cursor.c (+6, -6) (Diff)
/source/blender/editors/sculpt_paint/paint_hide.c (+1, -1) (Diff)
/source/blender/editors/sculpt_paint/paint_image.c (+22, -17) (Diff)
/source/blender/editors/sculpt_paint/paint_ops.c (+3, -3) (Diff)
/source/blender/editors/sculpt_paint/paint_vertex.c (+1, -1) (Diff)
/source/blender/editors/sculpt_paint/sculpt.c (+247, -121) (Diff)
/source/blender/editors/space_api/spacetypes.c (+22, -22) (Diff)
/source/blender/editors/space_clip/clip_editor.c (+26, -2) (Diff)
/source/blender/editors/space_clip/clip_intern.h (+1, -0) (Diff)
/source/blender/editors/space_clip/space_clip.c (+6, -0) (Diff)
/source/blender/editors/space_clip/tracking_ops.c (+91, -0) (Diff)
/source/blender/editors/space_console/console_ops.c (+4, -4) (Diff)
/source/blender/editors/space_file/filelist.c (+2, -2) (Diff)
/source/blender/editors/space_file/file_ops.c (+10, -2) (Diff)
/source/blender/editors/space_file/file_panels.c (+1, -1) (Diff)
/source/blender/editors/space_file/fsmenu.c (+44, -30) (Diff)
/source/blender/editors/space_file/fsmenu.h (+4, -1) (Diff)
/source/blender/editors/space_file/space_file.c (+4, -1) (Diff)
/source/blender/editors/space_image/image_ops.c (+1, -1) (Diff)
/source/blender/editors/space_logic/logic_buttons.c (+3, -2) (Diff)
/source/blender/editors/space_logic/logic_window.c (+23, -23) (Diff)
/source/blender/editors/space_nla/nla_buttons.c (+3, -3) (Diff)
/source/blender/editors/space_nla/nla_draw.c (+7, -7) (Diff)
/source/blender/editors/space_nla/nla_edit.c (+2, -2) (Diff)
/source/blender/editors/space_node/drawnode.c (+301, -11) (Diff)
/source/blender/editors/space_node/node_draw.c (+5, -2) (Diff)
/source/blender/editors/space_node/node_edit.c (+197, -141) (Diff)
/source/blender/editors/space_node/node_intern.h (+5, -3) (Diff)
/source/blender/editors/space_node/node_ops.c (+2, -0) (Diff)
/source/blender/editors/space_sequencer/sequencer_edit.c (+4, -4) (Diff)
/source/blender/editors/space_sequencer/sequencer_select.c (+2, -2) (Diff)
/source/blender/editors/space_text/text_ops.c (+1, -1) (Diff)
/source/blender/editors/space_time/space_time.c (+2, -2) (Diff)
/source/blender/editors/space_userpref/space_userpref.c (+1, -1) (Diff)
/source/blender/editors/space_view3d/drawarmature.c (+1, -1) (Diff)
/source/blender/editors/space_view3d/drawmesh.c (+10, -10) (Diff)
/source/blender/editors/space_view3d/drawobject.c (+32, -25) (Diff)
/source/blender/editors/space_view3d/view3d_draw.c (+9, -6) (Diff)
/source/blender/editors/space_view3d/view3d_edit.c (+5, -4) (Diff)
/source/blender/editors/space_view3d/view3d_select.c (+14, -24) (Diff)
/source/blender/editors/space_view3d/view3d_toolbar.c (+6, -4) (Diff)
/source/blender/editors/transform/transform.c (+93, -107) (Diff)
/source/blender/editors/transform/transform_conversions.c (+91, -51) (Diff)
/source/blender/editors/transform/transform_generics.c (+1, -1) (Diff)
/source/blender/editors/transform/transform_input.c (+2, -2) (Diff)
/source/blender/editors/transform/transform_manipulator.c (+4, -4) (Diff)
/source/blender/editors/transform/transform_orientations.c (+1, -1) (Diff)
/source/blender/editors/transform/transform_snap.c (+1, -1) (Diff)
/source/blender/editors/util/editmode_undo.c (+4, -4) (Diff)
/source/blender/editors/util/undo.c (+4, -4) (Diff)
/source/blender/editors/uvedit/uvedit_ops.c (+13, -18) (Diff)
/source/blender/editors/uvedit/uvedit_parametrizer.c (+7, -0) (Diff)
/source/blender/editors/uvedit/uvedit_smart_stitch.c (+1, -1) (Diff)
/source/blender/gpu/intern/gpu_buffers.c (+2, -2) (Diff)
/source/blender/gpu/intern/gpu_codegen.c (+3, -3) (Diff)
/source/blender/gpu/intern/gpu_draw.c (+3, -3) (Diff)
/source/blender/gpu/intern/gpu_extensions.c (+1, -1) (Diff)
/source/blender/gpu/intern/gpu_material.c (+2, -2) (Diff)
/source/blender/gpu/shaders/gpu_shader_material.glsl (+11, -0) (Diff)
/source/blender/gpu/shaders/gpu_shader_material.glsl.c (+12, -6) (Diff)
/source/blender/ikplugin/intern/itasc_plugin.cpp (+3, -3) (Diff)
/source/blender/imbuf/intern/allocimbuf.c (+61, -61) (Diff)
/source/blender/imbuf/intern/anim_movie.c (+239, -232) (Diff)
/source/blender/imbuf/intern/bmp.c (+26, -26) (Diff)
/source/blender/imbuf/intern/cache.c (+65, -65) (Diff)
/source/blender/imbuf/intern/cineon/cineon_dpx.c (+1, -1) (Diff)
/source/blender/imbuf/intern/divers.c (+142, -142) (Diff)
/source/blender/imbuf/intern/filetype.c (+23, -9) (Diff)
/source/blender/imbuf/intern/filter.c (+171, -170) (Diff)
/source/blender/imbuf/intern/imageprocess.c (+168, -168) (Diff)
/source/blender/imbuf/intern/IMB_anim.h (+20, -21) (Diff)
/source/blender/imbuf/intern/IMB_metadata.h (+5, -5) (Diff)
/source/blender/imbuf/intern/indexer.c (+191, -191) (Diff)
/source/blender/imbuf/intern/indexer_dv.c (+39, -39) (Diff)
/source/blender/imbuf/intern/iris.c (+181, -181) (Diff)
/source/blender/imbuf/intern/jp2.c (+249, -249) (Diff)
/source/blender/imbuf/intern/jpeg.c (+71, -71) (Diff)
/source/blender/imbuf/intern/metadata.c (+10, -10) (Diff)
/source/blender/imbuf/intern/moviecache.c (+16, -16) (Diff)
/source/blender/imbuf/intern/openexr/openexr_multi.h (+18, -18) (Diff)
/source/blender/imbuf/intern/png.c (+2, -1) (Diff)
/source/blender/imbuf/intern/radiance_hdr.c (+68, -68) (Diff)
/source/blender/imbuf/intern/readimage.c (+17, -17) (Diff)
/source/blender/imbuf/intern/rotate.c (+27, -27) (Diff)
/source/blender/imbuf/intern/scaling.c (+260, -259) (Diff)
/source/blender/imbuf/intern/targa.c (+97, -98) (Diff)
/source/blender/imbuf/intern/thumbs.c (+36, -38) (Diff)
/source/blender/imbuf/intern/thumbs_blend.c (+28, -28) (Diff)
/source/blender/imbuf/intern/tiff.c (+102, -102) (Diff)
/source/blender/imbuf/intern/util.c (+51, -47) (Diff)
/source/blender/imbuf/intern/writeimage.c (+2, -2) (Diff)
/source/blender/makesdna/DNA_meshdata_types.h (+3, -3) (Diff)
/source/blender/makesdna/DNA_modifier_types.h (+6, -4) (Diff)
/source/blender/makesdna/DNA_movieclip_types.h (+1, -1) (Diff)
/source/blender/makesdna/DNA_node_types.h (+75, -3) (Diff)
/source/blender/makesdna/DNA_scene_types.h (+1, -1) (Diff)
/source/blender/makesdna/DNA_texture_types.h (+2, -1) (Diff)
/source/blender/makesdna/intern/dna_genfile.c (+1, -1) (Diff)
/source/blender/makesdna/intern/makesdna.c (+3, -3) (Diff)
/source/blender/makesrna/intern/rna_access.c (+5, -3) (Diff)
/source/blender/makesrna/intern/rna_animation.c (+3, -3) (Diff)
/source/blender/makesrna/intern/rna_armature.c (+4, -2) (Diff)
/source/blender/makesrna/intern/rna_brush.c (+34, -2) (Diff)
/source/blender/makesrna/intern/rna_color.c (+41, -8) (Diff)
/source/blender/makesrna/intern/rna_constraint.c (+1, -0) (Diff)
/source/blender/makesrna/intern/rna_controller.c (+2, -1) (Diff)
/source/blender/makesrna/intern/rna_ID.c (+5, -0) (Diff)
/source/blender/makesrna/intern/rna_image_api.c (+12, -0) (Diff)
/source/blender/makesrna/intern/rna_main_api.c (+4, -2) (Diff)
/source/blender/makesrna/intern/rna_mesh.c (+3, -0) (Diff)
/source/blender/makesrna/intern/rna_modifier.c (+10, -0) (Diff)
/source/blender/makesrna/intern/rna_nodetree.c (+440, -4) (Diff)
/source/blender/makesrna/intern/rna_nodetree_types.h (+6, -1) (Diff)
/source/blender/makesrna/intern/rna_rna.c (+11, -0) (Diff)
/source/blender/makesrna/intern/rna_sequencer.c (+4, -2) (Diff)
/source/blender/makesrna/intern/rna_sequencer_api.c (+23, -6) (Diff)
/source/blender/makesrna/intern/rna_space.c (+3, -0) (Diff)
/source/blender/makesrna/intern/rna_userdef.c (+1, -1) (Diff)
/source/blender/modifiers/intern/MOD_boolean_util.c (+1, -1) (Diff)
/source/blender/modifiers/intern/MOD_build.c (+3, -6) (Diff)
/source/blender/modifiers/intern/MOD_collision.c (+1, -1) (Diff)
/source/blender/modifiers/intern/MOD_mask.c (+6, -6) (Diff)
/source/blender/modifiers/intern/MOD_mirror.c (+1, -1) (Diff)
/source/blender/modifiers/intern/MOD_remesh.c (+11, -0) (Diff)
/source/blender/modifiers/intern/MOD_screw.c (+5, -3) (Diff)
/source/blender/nodes/CMakeLists.txt (+8, -0) (Diff)
/source/blender/nodes/composite/nodes/node_composite_bilateralblur.c (+1, -1) (Diff)
/source/blender/nodes/composite/nodes/node_composite_blur.c (+1, -1) (Diff)
/source/blender/nodes/composite/nodes/node_composite_brightness.c (+4, -4) (Diff)
/source/blender/nodes/composite/nodes/node_composite_defocus.c (+2, -2) (Diff)
/source/blender/nodes/composite/nodes/node_composite_displace.c (+1, -1) (Diff)
/source/blender/nodes/composite/nodes/node_composite_image.c (+41, -55) (Diff)
/source/blender/nodes/composite/nodes/node_composite_outputFile.c (+1, -1) (Diff)
/source/blender/nodes/composite/nodes/node_composite_viewer.c (+2, -0) (Diff)
/source/blender/nodes/composite/node_composite_tree.c (+39, -31) (Diff)
/source/blender/nodes/composite/node_composite_util.c (+2, -2) (Diff)
/source/blender/nodes/intern/node_common.c (+1, -1) (Diff)
/source/blender/nodes/intern/node_exec.c (+2, -2) (Diff)
/source/blender/nodes/NOD_composite.h (+8, -0) (Diff)
/source/blender/nodes/SConscript (+1, -0) (Diff)
/source/blender/nodes/shader/nodes/node_shader_tex_environment.c (+2, -5) (Diff)
/source/blender/nodes/shader/nodes/node_shader_tex_image.c (+2, -5) (Diff)
/source/blender/nodes/shader/node_shader_tree.c (+9, -9) (Diff)
/source/blender/nodes/shader/node_shader_util.c (+5, -5) (Diff)
/source/blender/nodes/texture/node_texture_tree.c (+9, -9) (Diff)
/source/blender/python/bmesh/bmesh_py_types.c (+4, -4) (Diff)
/source/blender/python/generic/py_capi_utils.c (+3, -0) (Diff)
/source/blender/python/intern/bpy_driver.c (+2, -2) (Diff)
/source/blender/python/intern/bpy_interface.c (+10, -5) (Diff)
/source/blender/python/intern/bpy_props.c (+22, -10) (Diff)
/source/blender/python/intern/bpy_rna.c (+3, -3) (Diff)
/source/blender/python/intern/bpy_rna_callback.c (+1, -1) (Diff)
/source/blender/render/intern/raytrace/bvh.h (+73, -76) (Diff)
/source/blender/render/intern/raytrace/rayobject.cpp (+72, -72) (Diff)
/source/blender/render/intern/raytrace/rayobject_blibvh.cpp (+15, -17) (Diff)
/source/blender/render/intern/raytrace/rayobject_hint.h (+6, -8) (Diff)
/source/blender/render/intern/raytrace/rayobject_qbvh.cpp (+16, -17) (Diff)
/source/blender/render/intern/raytrace/rayobject_rtbuild.cpp (+94, -96) (Diff)
/source/blender/render/intern/raytrace/rayobject_rtbuild.h (+7, -10) (Diff)
/source/blender/render/intern/raytrace/rayobject_svbvh.cpp (+19, -21) (Diff)
/source/blender/render/intern/raytrace/rayobject_vbvh.cpp (+22, -24) (Diff)
/source/blender/render/intern/raytrace/reorganize.h (+58, -59) (Diff)
/source/blender/render/intern/raytrace/svbvh.h (+34, -36) (Diff)
/source/blender/render/intern/raytrace/vbvh.h (+16, -19) (Diff)
/source/blender/render/intern/source/convertblender.c (+26, -24) (Diff)
/source/blender/render/intern/source/envmap.c (+2, -2) (Diff)
/source/blender/render/intern/source/initrender.c (+1, -1) (Diff)
/source/blender/render/intern/source/pipeline.c (+6, -6) (Diff)
/source/blender/render/intern/source/pixelshading.c (+2, -2) (Diff)
/source/blender/render/intern/source/rayshade.c (+8, -8) (Diff)
/source/blender/render/intern/source/rendercore.c (+14, -14) (Diff)
/source/blender/render/intern/source/renderdatabase.c (+3, -1) (Diff)
/source/blender/render/intern/source/render_texture.c (+18, -18) (Diff)
/source/blender/render/intern/source/shadeinput.c (+1, -1) (Diff)
/source/blender/render/intern/source/shadeoutput.c (+14, -10) (Diff)
/source/blender/render/intern/source/sss.c (+6, -6) (Diff)
/source/blender/render/intern/source/strand.c (+2, -2) (Diff)
/source/blender/render/intern/source/texture_ocean.c (+6, -6) (Diff)
/source/blender/render/intern/source/zbuf.c (+14, -14) (Diff)
/source/blender/SConscript (+2, -0) (Diff)
/source/blender/windowmanager/intern/wm.c (+1, -1) (Diff)
/source/blender/windowmanager/intern/wm_draw.c (+10, -10) (Diff)
/source/blender/windowmanager/intern/wm_event_system.c (+11, -11) (Diff)
/source/blender/windowmanager/intern/wm_gesture.c (+2, -2) (Diff)
/source/blender/windowmanager/intern/wm_jobs.c (+2, -1) (Diff)
/source/blender/windowmanager/intern/wm_operators.c (+42, -3) (Diff)
/source/blender/windowmanager/intern/wm_window.c (+3, -3) (Diff)
/source/blender/windowmanager/WM_api.h (+1, -0) (Diff)
/source/blenderplayer/bad_level_call_stubs/stubs.c (+4, -0) (Diff)
/source/creator/CMakeLists.txt (+3, -0) (Diff)
/source/creator/creator.c (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_PythonController.cpp (+1, -1) (Diff)
/source/gameengine/GameLogic/SCA_RandomNumberGenerator.h (+1, -1) (Diff)
/source/gameengine/Ketsji/KX_PythonInit.cpp (+9, -6) (Diff)
/source/gameengine/VideoTexture/CMakeLists.txt (+4, -0) (Diff)
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021