Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/operations/COM_CropOperation.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_CROPOPERATION_H__ | #pragma once | ||||
| #define __COM_CROPOPERATION_H__ | |||||
| #include "COM_NodeOperation.h" | #include "COM_NodeOperation.h" | ||||
| class CropBaseOperation : public NodeOperation { | class CropBaseOperation : public NodeOperation { | ||||
| protected: | protected: | ||||
| SocketReader *m_inputOperation; | SocketReader *m_inputOperation; | ||||
| NodeTwoXYs *m_settings; | NodeTwoXYs *m_settings; | ||||
| bool m_relative; | bool m_relative; | ||||
| Show All 30 Lines | |||||
| public: | public: | ||||
| CropImageOperation(); | CropImageOperation(); | ||||
| bool determineDependingAreaOfInterest(rcti *input, | bool determineDependingAreaOfInterest(rcti *input, | ||||
| ReadBufferOperation *readOperation, | ReadBufferOperation *readOperation, | ||||
| rcti *output); | rcti *output); | ||||
| void determineResolution(unsigned int resolution[2], unsigned int preferredResolution[2]); | void determineResolution(unsigned int resolution[2], unsigned int preferredResolution[2]); | ||||
| void executePixelSampled(float output[4], float x, float y, PixelSampler sampler); | void executePixelSampled(float output[4], float x, float y, PixelSampler sampler); | ||||
| }; | }; | ||||
| #endif | |||||