Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_MovieDistortionOperation.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_MOVIEDISTORTIONOPERATION_H__ | #pragma once | ||||
| #define __COM_MOVIEDISTORTIONOPERATION_H__ | |||||
| #include "COM_NodeOperation.h" | #include "COM_NodeOperation.h" | ||||
| #include "DNA_movieclip_types.h" | #include "DNA_movieclip_types.h" | ||||
| #include "MEM_guardedalloc.h" | #include "MEM_guardedalloc.h" | ||||
| #include "BKE_tracking.h" | #include "BKE_tracking.h" | ||||
| class MovieDistortionOperation : public NodeOperation { | class MovieDistortionOperation : public NodeOperation { | ||||
| Show All 24 Lines | public: | ||||
| void setFramenumber(int framenumber) | void setFramenumber(int framenumber) | ||||
| { | { | ||||
| this->m_framenumber = framenumber; | this->m_framenumber = framenumber; | ||||
| } | } | ||||
| bool determineDependingAreaOfInterest(rcti *input, | bool determineDependingAreaOfInterest(rcti *input, | ||||
| ReadBufferOperation *readOperation, | ReadBufferOperation *readOperation, | ||||
| rcti *output); | rcti *output); | ||||
| }; | }; | ||||
| #endif | |||||