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_TextureOperation.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_TextureOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_TextureOperation.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/compositor/operations/COM_TextureOperation.h b/source/blender/compositor/operations/COM_TextureOperation.h
index 2efb76e8c37..3916f82c77b 100644
--- a/source/blender/compositor/operations/COM_TextureOperation.h
+++ b/source/blender/compositor/operations/COM_TextureOperation.h
@@ -35,12 +35,12 @@ namespace blender::compositor {
*/
class TextureBaseOperation : public MultiThreadedOperation {
private:
- Tex *m_texture;
- const RenderData *m_rd;
- SocketReader *m_inputSize;
- SocketReader *m_inputOffset;
- struct ImagePool *m_pool;
- bool m_sceneColorManage;
+ Tex *texture_;
+ const RenderData *rd_;
+ SocketReader *inputSize_;
+ SocketReader *inputOffset_;
+ struct ImagePool *pool_;
+ bool sceneColorManage_;
protected:
/**
@@ -58,17 +58,17 @@ class TextureBaseOperation : public MultiThreadedOperation {
void setTexture(Tex *texture)
{
- m_texture = texture;
+ texture_ = texture;
}
void initExecution() override;
void deinitExecution() override;
void setRenderData(const RenderData *rd)
{
- m_rd = rd;
+ rd_ = rd;
}
void setSceneColorManage(bool sceneColorManage)
{
- m_sceneColorManage = sceneColorManage;
+ sceneColorManage_ = sceneColorManage;
}
void update_memory_buffer_partial(MemoryBuffer *output,