Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_VectorBlurOperation.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_VECTORBLUROPERATION_H__ | #pragma once | ||||
| #define __COM_VECTORBLUROPERATION_H__ | |||||
| #include "COM_NodeOperation.h" | #include "COM_NodeOperation.h" | ||||
| #include "COM_QualityStepHelper.h" | #include "COM_QualityStepHelper.h" | ||||
| #include "DNA_node_types.h" | #include "DNA_node_types.h" | ||||
| class VectorBlurOperation : public NodeOperation, public QualityStepHelper { | class VectorBlurOperation : public NodeOperation, public QualityStepHelper { | ||||
| private: | private: | ||||
| /** | /** | ||||
| * \brief Cached reference to the inputProgram | * \brief Cached reference to the inputProgram | ||||
| Show All 38 Lines | bool determineDependingAreaOfInterest(rcti *input, | ||||
| rcti *output); | rcti *output); | ||||
| protected: | protected: | ||||
| void generateVectorBlur(float *data, | void generateVectorBlur(float *data, | ||||
| MemoryBuffer *inputImage, | MemoryBuffer *inputImage, | ||||
| MemoryBuffer *inputSpeed, | MemoryBuffer *inputSpeed, | ||||
| MemoryBuffer *inputZ); | MemoryBuffer *inputZ); | ||||
| }; | }; | ||||
| #endif | |||||