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:
authorManuel Castilla <manzanillawork@gmail.com>2021-10-07 22:36:35 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-10-08 02:29:02 +0300
commit12a5a605572d742335a4978966444d393792cd28 (patch)
treef06fa16602c175982ca2e5d6ec5b55f387a98cbc /source/blender/compositor/operations/COM_GlareBaseOperation.h
parenta808c5ae65e8a9fd2271274cbba3038846e5ffee (diff)
Cleanup: Use `_` suffix for non-public members in Compositor
To follow the style guide.
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,