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_KeyingClipOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_KeyingClipOperation.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/compositor/operations/COM_KeyingClipOperation.h b/source/blender/compositor/operations/COM_KeyingClipOperation.h
index 9c7b23b0160..1a8e71a306b 100644
--- a/source/blender/compositor/operations/COM_KeyingClipOperation.h
+++ b/source/blender/compositor/operations/COM_KeyingClipOperation.h
@@ -27,27 +27,27 @@
#include "COM_NodeOperation.h"
/**
- * Class with implementation of black/white clipping for keying node
- */
+ * Class with implementation of black/white clipping for keying node
+ */
class KeyingClipOperation : public NodeOperation {
protected:
- float clipBlack;
- float clipWhite;
+ float m_clipBlack;
+ float m_clipWhite;
- int kernelRadius;
- float kernelTolerance;
+ int m_kernelRadius;
+ float m_kernelTolerance;
- bool isEdgeMatte;
+ bool m_isEdgeMatte;
public:
KeyingClipOperation();
- void setClipBlack(float value) {this->clipBlack = value;}
- void setClipWhite(float value) {this->clipWhite = value;}
+ void setClipBlack(float value) {this->m_clipBlack = value;}
+ void setClipWhite(float value) {this->m_clipWhite = value;}
- void setKernelRadius(int value) {this->kernelRadius = value;}
- void setKernelTolerance(float value) {this->kernelTolerance = value;}
+ void setKernelRadius(int value) {this->m_kernelRadius = value;}
+ void setKernelTolerance(float value) {this->m_kernelTolerance = value;}
- void setIsEdgeMatte(bool value) {this->isEdgeMatte = value;}
+ void setIsEdgeMatte(bool value) {this->m_isEdgeMatte = value;}
void *initializeTileData(rcti *rect, MemoryBuffer **memoryBuffers);