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:
authorCampbell Barton <ideasman42@gmail.com>2012-06-26 05:22:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-26 05:22:05 +0400
commit6a1d82490e49d1f5d73b5082516b087d44010fb8 (patch)
tree0650cce3c1d47db6c5de1f4f2ba05b619c412f09 /source/blender/compositor/operations/COM_ScaleOperation.h
parent7a0ab62d3f65f3b28da2a6ba9916c21132f8ea0d (diff)
use m_ prefix for compositor class members (all compositor operations).
Diffstat (limited to 'source/blender/compositor/operations/COM_ScaleOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ScaleOperation.h50
1 files changed, 25 insertions, 25 deletions
diff --git a/source/blender/compositor/operations/COM_ScaleOperation.h b/source/blender/compositor/operations/COM_ScaleOperation.h
index 7089f6c10a4..8cd44810bbd 100644
--- a/source/blender/compositor/operations/COM_ScaleOperation.h
+++ b/source/blender/compositor/operations/COM_ScaleOperation.h
@@ -27,11 +27,11 @@
class ScaleOperation : public NodeOperation {
private:
- SocketReader *inputOperation;
- SocketReader *inputXOperation;
- SocketReader *inputYOperation;
- float centerX;
- float centerY;
+ SocketReader *m_inputOperation;
+ SocketReader *m_inputXOperation;
+ SocketReader *m_inputYOperation;
+ float m_centerX;
+ float m_centerY;
public:
ScaleOperation();
bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
@@ -42,11 +42,11 @@ public:
};
class ScaleAbsoluteOperation : public NodeOperation {
- SocketReader *inputOperation;
- SocketReader *inputXOperation;
- SocketReader *inputYOperation;
- float centerX;
- float centerY;
+ SocketReader *m_inputOperation;
+ SocketReader *m_inputXOperation;
+ SocketReader *m_inputYOperation;
+ float m_centerX;
+ float m_centerY;
public:
ScaleAbsoluteOperation();
@@ -58,20 +58,20 @@ public:
};
class ScaleFixedSizeOperation : public NodeOperation {
- SocketReader *inputOperation;
- int newWidth;
- int newHeight;
- float relX;
- float relY;
+ SocketReader *m_inputOperation;
+ int m_newWidth;
+ int m_newHeight;
+ float m_relX;
+ float m_relY;
/* center is only used for aspect correction */
- float offsetX;
- float offsetY;
- bool is_aspect;
- bool is_crop;
+ float m_offsetX;
+ float m_offsetY;
+ bool m_is_aspect;
+ bool m_is_crop;
/* set from other properties on initialization,
* check if we need to apply offset */
- bool is_offset;
+ bool m_is_offset;
public:
ScaleFixedSizeOperation();
bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
@@ -80,11 +80,11 @@ public:
void initExecution();
void deinitExecution();
- void setNewWidth(int width) { this->newWidth = width; }
- void setNewHeight(int height) { this->newHeight = height; }
- void setIsAspect(bool is_aspect) { this->is_aspect = is_aspect; }
- void setIsCrop(bool is_crop) { this->is_crop = is_crop; }
- void setOffset(float x, float y) { this->offsetX = x; this->offsetY = y; }
+ void setNewWidth(int width) { this->m_newWidth = width; }
+ void setNewHeight(int height) { this->m_newHeight = height; }
+ void setIsAspect(bool is_aspect) { this->m_is_aspect = is_aspect; }
+ void setIsCrop(bool is_crop) { this->m_is_crop = is_crop; }
+ void setOffset(float x, float y) { this->m_offsetX = x; this->m_offsetY = y; }
};
#endif