Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_DirectionalBlurOperation.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_DIRECTIONALBLUROPERATION_H__ | #pragma once | ||||
| #define __COM_DIRECTIONALBLUROPERATION_H__ | |||||
| #include "COM_NodeOperation.h" | #include "COM_NodeOperation.h" | ||||
| #include "COM_QualityStepHelper.h" | #include "COM_QualityStepHelper.h" | ||||
| class DirectionalBlurOperation : public NodeOperation, public QualityStepHelper { | class DirectionalBlurOperation : public NodeOperation, public QualityStepHelper { | ||||
| private: | private: | ||||
| SocketReader *m_inputProgram; | SocketReader *m_inputProgram; | ||||
| NodeDBlurData *m_data; | NodeDBlurData *m_data; | ||||
| Show All 30 Lines | public: | ||||
| void executeOpenCL(OpenCLDevice *device, | void executeOpenCL(OpenCLDevice *device, | ||||
| MemoryBuffer *outputMemoryBuffer, | MemoryBuffer *outputMemoryBuffer, | ||||
| cl_mem clOutputBuffer, | cl_mem clOutputBuffer, | ||||
| MemoryBuffer **inputMemoryBuffers, | MemoryBuffer **inputMemoryBuffers, | ||||
| list<cl_mem> *clMemToCleanUp, | list<cl_mem> *clMemToCleanUp, | ||||
| list<cl_kernel> *clKernelsToCleanUp); | list<cl_kernel> *clKernelsToCleanUp); | ||||
| }; | }; | ||||
| #endif | |||||