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_SeparateChannelOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_SeparateChannelOperation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_SeparateChannelOperation.h b/source/blender/compositor/operations/COM_SeparateChannelOperation.h
index b1a38fd8294..65a54f91252 100644
--- a/source/blender/compositor/operations/COM_SeparateChannelOperation.h
+++ b/source/blender/compositor/operations/COM_SeparateChannelOperation.h
@@ -27,8 +27,8 @@
class SeparateChannelOperation : public NodeOperation {
private:
- SocketReader *inputOperation;
- int channel;
+ SocketReader *m_inputOperation;
+ int m_channel;
public:
SeparateChannelOperation();
void executePixel(float *color, float x, float y, PixelSampler sampler, MemoryBuffer * inputBuffers[]);
@@ -36,7 +36,7 @@ public:
void initExecution();
void deinitExecution();
- void setChannel(int channel) { this->channel = channel; }
+ void setChannel(int channel) { this->m_channel = channel; }
};
#endif