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.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/compositor/operations/COM_KeyingClipOperation.h b/source/blender/compositor/operations/COM_KeyingClipOperation.h
index 1a17d591781..adbb792d7b8 100644
--- a/source/blender/compositor/operations/COM_KeyingClipOperation.h
+++ b/source/blender/compositor/operations/COM_KeyingClipOperation.h
@@ -40,25 +40,25 @@ class KeyingClipOperation : public MultiThreadedOperation {
void setClipBlack(float value)
{
- this->m_clipBlack = value;
+ m_clipBlack = value;
}
void setClipWhite(float value)
{
- this->m_clipWhite = value;
+ m_clipWhite = value;
}
void setKernelRadius(int value)
{
- this->m_kernelRadius = value;
+ m_kernelRadius = value;
}
void setKernelTolerance(float value)
{
- this->m_kernelTolerance = value;
+ m_kernelTolerance = value;
}
void setIsEdgeMatte(bool value)
{
- this->m_isEdgeMatte = value;
+ m_isEdgeMatte = value;
}
void *initializeTileData(rcti *rect) override;