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.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/compositor/operations/COM_KeyingClipOperation.h b/source/blender/compositor/operations/COM_KeyingClipOperation.h
index adbb792d7b8..422d79597ce 100644
--- a/source/blender/compositor/operations/COM_KeyingClipOperation.h
+++ b/source/blender/compositor/operations/COM_KeyingClipOperation.h
@@ -27,38 +27,38 @@ namespace blender::compositor {
*/
class KeyingClipOperation : public MultiThreadedOperation {
protected:
- float m_clipBlack;
- float m_clipWhite;
+ float clipBlack_;
+ float clipWhite_;
- int m_kernelRadius;
- float m_kernelTolerance;
+ int kernelRadius_;
+ float kernelTolerance_;
- bool m_isEdgeMatte;
+ bool isEdgeMatte_;
public:
KeyingClipOperation();
void setClipBlack(float value)
{
- m_clipBlack = value;
+ clipBlack_ = value;
}
void setClipWhite(float value)
{
- m_clipWhite = value;
+ clipWhite_ = value;
}
void setKernelRadius(int value)
{
- m_kernelRadius = value;
+ kernelRadius_ = value;
}
void setKernelTolerance(float value)
{
- m_kernelTolerance = value;
+ kernelTolerance_ = value;
}
void setIsEdgeMatte(bool value)
{
- m_isEdgeMatte = value;
+ isEdgeMatte_ = value;
}
void *initializeTileData(rcti *rect) override;