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-07 22:14:54 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-10-08 02:13:07 +0300
commita808c5ae65e8a9fd2271274cbba3038846e5ffee (patch)
treebe7afabc606c20c9515c72391428a323c642b299 /source/blender/compositor/operations/COM_BokehBlurOperation.h
parentc0995c27a8f57a79eb98ae70f5bd1cefbacb7a02 (diff)
Cleanup: Remove `this->` for `m_` prefixed members in Compositor
The prefix is already explicit.
Diffstat (limited to 'source/blender/compositor/operations/COM_BokehBlurOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_BokehBlurOperation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_BokehBlurOperation.h b/source/blender/compositor/operations/COM_BokehBlurOperation.h
index 84f5a8293ba..7b0f0710a00 100644
--- a/source/blender/compositor/operations/COM_BokehBlurOperation.h
+++ b/source/blender/compositor/operations/COM_BokehBlurOperation.h
@@ -64,8 +64,8 @@ class BokehBlurOperation : public MultiThreadedOperation, public QualityStepHelp
void setSize(float size)
{
- this->m_size = size;
- this->m_sizeavailable = true;
+ m_size = size;
+ m_sizeavailable = true;
}
void executeOpenCL(OpenCLDevice *device,
@@ -77,7 +77,7 @@ class BokehBlurOperation : public MultiThreadedOperation, public QualityStepHelp
void setExtendBounds(bool extend_bounds)
{
- this->m_extend_bounds = extend_bounds;
+ m_extend_bounds = extend_bounds;
}
void determine_canvas(const rcti &preferred_area, rcti &r_area) override;