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_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 9e7db59d99d..479927d30d1 100644
--- a/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h
+++ b/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h
@@ -33,12 +33,12 @@ protected:
/**
* Prefetched reference to the inputProgram
*/
- SocketReader *inputValueOperation;
- SocketReader *inputColorOperation;
+ SocketReader *m_inputValueOperation;
+ SocketReader *m_inputColorOperation;
- float gain[3];
- float lift[3];
- float gamma[3];
+ float m_gain[3];
+ float m_lift[3];
+ float m_gamma[3];
public:
/**
@@ -61,8 +61,8 @@ public:
*/
void deinitExecution();
- void setGain(float gain[3]) { copy_v3_v3(this->gain, gain); }
- void setLift(float lift[3]) { copy_v3_v3(this->lift, lift); }
- void setGamma(float gamma[3]) { copy_v3_v3(this->gamma, gamma); }
+ void setGain(float gain[3]) { copy_v3_v3(this->m_gain, gain); }
+ void setLift(float lift[3]) { copy_v3_v3(this->m_lift, lift); }
+ void setGamma(float gamma[3]) { copy_v3_v3(this->m_gamma, gamma); }
};
#endif