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:01:04 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:41:14 +0300
commita2ee3c3a9f01f5cb2f05f1e84a1b6c1931d9d4a4 (patch)
treed409678b16280311ed228929a45c9470f67a6dcd /source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h
parentea79efef70da14100b591b50dcada819808f20b6 (diff)
Cleanup: replace members `m_` prefix by `_` suffix in Compositor
To convert old code to the current convention and use a single code style.
Diffstat (limited to 'source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h b/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h
index b9b3d45a68b..79c5cc1a047 100644
--- a/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h
+++ b/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h
@@ -31,12 +31,12 @@ class ColorBalanceASCCDLOperation : public MultiThreadedRowOperation {
/**
* Prefetched reference to the inputProgram
*/
- SocketReader *m_inputValueOperation;
- SocketReader *m_inputColorOperation;
+ SocketReader *inputValueOperation_;
+ SocketReader *inputColorOperation_;
- float m_offset[3];
- float m_power[3];
- float m_slope[3];
+ float offset_[3];
+ float power_[3];
+ float slope_[3];
public:
/**
@@ -61,15 +61,15 @@ class ColorBalanceASCCDLOperation : public MultiThreadedRowOperation {
void setOffset(float offset[3])
{
- copy_v3_v3(m_offset, offset);
+ copy_v3_v3(offset_, offset);
}
void setPower(float power[3])
{
- copy_v3_v3(m_power, power);
+ copy_v3_v3(power_, power);
}
void setSlope(float slope[3])
{
- copy_v3_v3(m_slope, slope);
+ copy_v3_v3(slope_, slope);
}
void update_memory_buffer_row(PixelCursor &p) override;