From b07d866cf6d206d2e8012e1286c3c205eba0f24e Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 6 Sep 2018 10:39:25 +0200 Subject: Compositor: Always use AA on masks In a real world it is very weird to disable AA on a mask, it will give ugly looking result. For some fast preview passes (like in the node preview) the system can decide to disable AA without asking user to do anything. One thing we can consider doing is to remove Feather option as well. If real compo becomes measurably slower in cases when mask has no real feather, we can disable feather internally, without user input. Disabling feather in the interface is like making things faster but giving a wrong result, which doesn't sound that helpful either. Reviewers: brecht Reviewed By: brecht Subscribers: hype, sebastian_k Differential Revision: https://developer.blender.org/D3677 --- source/blender/compositor/nodes/COM_MaskNode.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'source/blender/compositor/nodes') diff --git a/source/blender/compositor/nodes/COM_MaskNode.cpp b/source/blender/compositor/nodes/COM_MaskNode.cpp index be05840f601..7e29674f9aa 100644 --- a/source/blender/compositor/nodes/COM_MaskNode.cpp +++ b/source/blender/compositor/nodes/COM_MaskNode.cpp @@ -62,7 +62,6 @@ void MaskNode::convertToOperations(NodeConverter &converter, const CompositorCon operation->setMask(mask); operation->setFramenumber(context.getFramenumber()); - operation->setSmooth((bool)(editorNode->custom1 & CMP_NODEFLAG_MASK_AA) != 0); operation->setFeather((bool)(editorNode->custom1 & CMP_NODEFLAG_MASK_NO_FEATHER) == 0); if ((editorNode->custom1 & CMP_NODEFLAG_MASK_MOTION_BLUR) && -- cgit v1.2.3