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 70692565e27..d89f3a0f29d 100644
--- a/source/blender/compositor/operations/COM_GlareThresholdOperation.h
+++ b/source/blender/compositor/operations/COM_GlareThresholdOperation.h
@@ -30,12 +30,12 @@ private:
/**
* @brief Cached reference to the inputProgram
*/
- SocketReader *inputProgram;
+ SocketReader *m_inputProgram;
/**
* @brief settings of the glare node.
*/
- NodeGlare *settings;
+ NodeGlare *m_settings;
public:
GlareThresholdOperation();
@@ -55,7 +55,7 @@ public:
void deinitExecution();
void setGlareSettings(NodeGlare *settings) {
- this->settings = settings;
+ this->m_settings = settings;
}
void determineResolution(unsigned int resolution[], unsigned int preferredResolution[]);