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-14 00:01:04 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:41:14 +0300
commita2ee3c3a9f01f5cb2f05f1e84a1b6c1931d9d4a4 (patch)
treed409678b16280311ed228929a45c9470f67a6dcd /source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h
parentea79efef70da14100b591b50dcada819808f20b6 (diff)
Cleanup: replace members `m_` prefix by `_` suffix in Compositor
To convert old code to the current convention and use a single code style.
Diffstat (limited to 'source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h b/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h
index 091310dc9e3..29cb40c29af 100644
--- a/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h
+++ b/source/blender/compositor/operations/COM_DoubleEdgeMaskOperation.h
@@ -27,13 +27,13 @@ class DoubleEdgeMaskOperation : public NodeOperation {
/**
* Cached reference to the inputProgram
*/
- SocketReader *m_inputOuterMask;
- SocketReader *m_inputInnerMask;
- bool m_adjacentOnly;
- bool m_keepInside;
+ SocketReader *inputOuterMask_;
+ SocketReader *inputInnerMask_;
+ bool adjacentOnly_;
+ bool keepInside_;
/* TODO(manzanilla): To be removed with tiled implementation. */
- float *m_cachedInstance;
+ float *cachedInstance_;
bool is_output_rendered_;
@@ -64,11 +64,11 @@ class DoubleEdgeMaskOperation : public NodeOperation {
void setAdjecentOnly(bool adjacentOnly)
{
- m_adjacentOnly = adjacentOnly;
+ adjacentOnly_ = adjacentOnly;
}
void setKeepInside(bool keepInside)
{
- m_keepInside = keepInside;
+ keepInside_ = keepInside;
}
void get_area_of_interest(int input_idx, const rcti &output_area, rcti &r_input_area) override;