Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_BilateralBlurOperation.h
| Show All 10 Lines | |||||
| * | * | ||||
| * You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU General Public License | ||||
| * along with this program; if not, write to the Free Software Foundation, | * along with this program; if not, write to the Free Software Foundation, | ||||
| * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| * | * | ||||
| * Copyright 2011, Blender Foundation. | * Copyright 2011, Blender Foundation. | ||||
| */ | */ | ||||
| #ifndef __COM_BILATERALBLUROPERATION_H__ | #pragma once | ||||
| #define __COM_BILATERALBLUROPERATION_H__ | |||||
| #include "COM_NodeOperation.h" | #include "COM_NodeOperation.h" | ||||
| #include "COM_QualityStepHelper.h" | #include "COM_QualityStepHelper.h" | ||||
| class BilateralBlurOperation : public NodeOperation, public QualityStepHelper { | class BilateralBlurOperation : public NodeOperation, public QualityStepHelper { | ||||
| private: | private: | ||||
| SocketReader *m_inputColorProgram; | SocketReader *m_inputColorProgram; | ||||
| SocketReader *m_inputDeterminatorProgram; | SocketReader *m_inputDeterminatorProgram; | ||||
| NodeBilateralBlurData *m_data; | NodeBilateralBlurData *m_data; | ||||
| Show All 21 Lines | bool determineDependingAreaOfInterest(rcti *input, | ||||
| ReadBufferOperation *readOperation, | ReadBufferOperation *readOperation, | ||||
| rcti *output); | rcti *output); | ||||
| void setData(NodeBilateralBlurData *data) | void setData(NodeBilateralBlurData *data) | ||||
| { | { | ||||
| this->m_data = data; | this->m_data = data; | ||||
| } | } | ||||
| }; | }; | ||||
| #endif | |||||