Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/compositor/operations/COM_PlaneCornerPinOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_PlaneCornerPinOperation.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/source/blender/compositor/operations/COM_PlaneCornerPinOperation.h b/source/blender/compositor/operations/COM_PlaneCornerPinOperation.h
index fc22d00c0f2..444616e13f2 100644
--- a/source/blender/compositor/operations/COM_PlaneCornerPinOperation.h
+++ b/source/blender/compositor/operations/COM_PlaneCornerPinOperation.h
@@ -28,36 +28,36 @@
#include "BLI_listbase.h"
#include "BLI_string.h"
-
class PlaneCornerPinMaskOperation : public PlaneDistortMaskOperation {
-private:
- bool m_corners_ready;
+ private:
+ bool m_corners_ready;
-public:
- PlaneCornerPinMaskOperation();
+ public:
+ PlaneCornerPinMaskOperation();
- void initExecution();
- void deinitExecution();
+ void initExecution();
+ void deinitExecution();
- void *initializeTileData(rcti *rect);
+ void *initializeTileData(rcti *rect);
- void determineResolution(unsigned int resolution[2], unsigned int preferredResolution[2]);
+ void determineResolution(unsigned int resolution[2], unsigned int preferredResolution[2]);
};
-
class PlaneCornerPinWarpImageOperation : public PlaneDistortWarpImageOperation {
-private:
- bool m_corners_ready;
+ private:
+ bool m_corners_ready;
-public:
- PlaneCornerPinWarpImageOperation();
+ public:
+ PlaneCornerPinWarpImageOperation();
- void initExecution();
- void deinitExecution();
+ void initExecution();
+ void deinitExecution();
- void *initializeTileData(rcti *rect);
+ void *initializeTileData(rcti *rect);
- bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
+ bool determineDependingAreaOfInterest(rcti *input,
+ ReadBufferOperation *readOperation,
+ rcti *output);
};
#endif