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:
authorManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:00:50 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:41:14 +0300
commitea79efef70da14100b591b50dcada819808f20b6 (patch)
tree4faf296870f1ab27ee33fee2b331fdb6b2d2bec4 /source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
parentecb8a574c752068de9f8d9eb98f54db1569df2f7 (diff)
Cleanup: remove `this->` for `m_` prefixed members in Compositor
For cleaning old code style as new code usually omit it.
Diffstat (limited to 'source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h b/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
index 3634bc2f1d7..6819e64ce80 100644
--- a/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
+++ b/source/blender/compositor/operations/COM_VariableSizeBokehBlurOperation.h
@@ -72,17 +72,17 @@ class VariableSizeBokehBlurOperation : public MultiThreadedOperation, public Qua
void setMaxBlur(int maxRadius)
{
- this->m_maxBlur = maxRadius;
+ m_maxBlur = maxRadius;
}
void setThreshold(float threshold)
{
- this->m_threshold = threshold;
+ m_threshold = threshold;
}
void setDoScaleSize(bool scale_size)
{
- this->m_do_size_scale = scale_size;
+ m_do_size_scale = scale_size;
}
void executeOpenCL(OpenCLDevice *device,
@@ -134,7 +134,7 @@ class InverseSearchRadiusOperation : public NodeOperation {
void setMaxBlur(int maxRadius)
{
- this->m_maxBlur = maxRadius;
+ m_maxBlur = maxRadius;
}
};
#endif