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_ColorBalanceLGGOperation.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_ColorBalanceLGGOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ColorBalanceLGGOperation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_ColorBalanceLGGOperation.h b/source/blender/compositor/operations/COM_ColorBalanceLGGOperation.h
index 4bc929ed76c..0a447f50514 100644
--- a/source/blender/compositor/operations/COM_ColorBalanceLGGOperation.h
+++ b/source/blender/compositor/operations/COM_ColorBalanceLGGOperation.h
@@ -61,15 +61,15 @@ class ColorBalanceLGGOperation : public MultiThreadedRowOperation {
void setGain(const float gain[3])
{
- copy_v3_v3(this->m_gain, gain);
+ copy_v3_v3(m_gain, gain);
}
void setLift(const float lift[3])
{
- copy_v3_v3(this->m_lift, lift);
+ copy_v3_v3(m_lift, lift);
}
void setGammaInv(const float gamma_inv[3])
{
- copy_v3_v3(this->m_gamma_inv, gamma_inv);
+ copy_v3_v3(m_gamma_inv, gamma_inv);
}
void update_memory_buffer_row(PixelCursor &p) override;