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_GlareThresholdOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_GlareThresholdOperation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_GlareThresholdOperation.h b/source/blender/compositor/operations/COM_GlareThresholdOperation.h
index 1917f016f72..f37020b61a8 100644
--- a/source/blender/compositor/operations/COM_GlareThresholdOperation.h
+++ b/source/blender/compositor/operations/COM_GlareThresholdOperation.h
@@ -28,12 +28,12 @@ class GlareThresholdOperation : public MultiThreadedOperation {
/**
* \brief Cached reference to the inputProgram
*/
- SocketReader *m_inputProgram;
+ SocketReader *inputProgram_;
/**
* \brief settings of the glare node.
*/
- NodeGlare *m_settings;
+ NodeGlare *settings_;
public:
GlareThresholdOperation();
@@ -55,7 +55,7 @@ class GlareThresholdOperation : public MultiThreadedOperation {
void setGlareSettings(NodeGlare *settings)
{
- m_settings = settings;
+ settings_ = settings;
}
void determine_canvas(const rcti &preferred_area, rcti &r_area) override;