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_ColorCorrectionOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ColorCorrectionOperation.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/compositor/operations/COM_ColorCorrectionOperation.h b/source/blender/compositor/operations/COM_ColorCorrectionOperation.h
index c0c33f7f2fa..8db3870709e 100644
--- a/source/blender/compositor/operations/COM_ColorCorrectionOperation.h
+++ b/source/blender/compositor/operations/COM_ColorCorrectionOperation.h
@@ -30,13 +30,13 @@ private:
/**
* Cached reference to the inputProgram
*/
- SocketReader *inputImage;
- SocketReader *inputMask;
- NodeColorCorrection *data;
+ SocketReader *m_inputImage;
+ SocketReader *m_inputMask;
+ NodeColorCorrection *m_data;
- bool redChannelEnabled;
- bool greenChannelEnabled;
- bool blueChannelEnabled;
+ bool m_redChannelEnabled;
+ bool m_greenChannelEnabled;
+ bool m_blueChannelEnabled;
public:
ColorCorrectionOperation();
@@ -56,9 +56,9 @@ public:
*/
void deinitExecution();
- void setData(NodeColorCorrection *data) { this->data = data; }
- void setRedChannelEnabled(bool enabled) { this->redChannelEnabled = enabled; }
- void setGreenChannelEnabled(bool enabled) { this->greenChannelEnabled = enabled; }
- void setBlueChannelEnabled(bool enabled) { this->blueChannelEnabled = enabled; }
+ void setData(NodeColorCorrection *data) { this->m_data = data; }
+ void setRedChannelEnabled(bool enabled) { this->m_redChannelEnabled = enabled; }
+ void setGreenChannelEnabled(bool enabled) { this->m_greenChannelEnabled = enabled; }
+ void setBlueChannelEnabled(bool enabled) { this->m_blueChannelEnabled = enabled; }
};
#endif