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_GlareBaseOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_GlareBaseOperation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_GlareBaseOperation.h b/source/blender/compositor/operations/COM_GlareBaseOperation.h
index 1d0c080ab8d..a50042f1ff4 100644
--- a/source/blender/compositor/operations/COM_GlareBaseOperation.h
+++ b/source/blender/compositor/operations/COM_GlareBaseOperation.h
@@ -42,12 +42,12 @@ class GlareBaseOperation : public SingleThreadedOperation {
/**
* \brief Cached reference to the inputProgram
*/
- SocketReader *m_inputProgram;
+ SocketReader *inputProgram_;
/**
* \brief settings of the glare node.
*/
- NodeGlare *m_settings;
+ NodeGlare *settings_;
bool is_output_rendered_;
@@ -64,7 +64,7 @@ class GlareBaseOperation : public SingleThreadedOperation {
void setGlareSettings(NodeGlare *settings)
{
- m_settings = settings;
+ settings_ = settings;
}
bool determineDependingAreaOfInterest(rcti *input,
ReadBufferOperation *readOperation,