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_EllipseMaskOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_EllipseMaskOperation.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/compositor/operations/COM_EllipseMaskOperation.h b/source/blender/compositor/operations/COM_EllipseMaskOperation.h
index 61d724c2f15..0b0ffa023cb 100644
--- a/source/blender/compositor/operations/COM_EllipseMaskOperation.h
+++ b/source/blender/compositor/operations/COM_EllipseMaskOperation.h
@@ -30,15 +30,15 @@ private:
/**
* Cached reference to the inputProgram
*/
- SocketReader *inputMask;
- SocketReader *inputValue;
+ SocketReader *m_inputMask;
+ SocketReader *m_inputValue;
- float sine;
- float cosine;
- float aspectRatio;
- int maskType;
+ float m_sine;
+ float m_cosine;
+ float m_aspectRatio;
+ int m_maskType;
- NodeEllipseMask *data;
+ NodeEllipseMask *m_data;
public:
EllipseMaskOperation();
@@ -57,9 +57,9 @@ public:
*/
void deinitExecution();
- void setData(NodeEllipseMask *data) { this->data = data; }
+ void setData(NodeEllipseMask *data) { this->m_data = data; }
- void setMaskType(int maskType) { this->maskType = maskType; }
+ void setMaskType(int maskType) { this->m_maskType = maskType; }
};
#endif