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_DifferenceMatteOperation.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_DifferenceMatteOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_DifferenceMatteOperation.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_DifferenceMatteOperation.h b/source/blender/compositor/operations/COM_DifferenceMatteOperation.h
index f95c78a38de..31ce0d3dbe5 100644
--- a/source/blender/compositor/operations/COM_DifferenceMatteOperation.h
+++ b/source/blender/compositor/operations/COM_DifferenceMatteOperation.h
@@ -28,9 +28,9 @@ namespace blender::compositor {
*/
class DifferenceMatteOperation : public MultiThreadedOperation {
private:
- NodeChroma *m_settings;
- SocketReader *m_inputImage1Program;
- SocketReader *m_inputImage2Program;
+ NodeChroma *settings_;
+ SocketReader *inputImage1Program_;
+ SocketReader *inputImage2Program_;
public:
/**
@@ -48,7 +48,7 @@ class DifferenceMatteOperation : public MultiThreadedOperation {
void setSettings(NodeChroma *nodeChroma)
{
- m_settings = nodeChroma;
+ settings_ = nodeChroma;
}
void update_memory_buffer_partial(MemoryBuffer *output,