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:
authorCampbell Barton <ideasman42@gmail.com>2012-06-26 05:22:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-26 05:22:05 +0400
commit6a1d82490e49d1f5d73b5082516b087d44010fb8 (patch)
tree0650cce3c1d47db6c5de1f4f2ba05b619c412f09 /source/blender/compositor/operations/COM_ChannelMatteOperation.h
parent7a0ab62d3f65f3b28da2a6ba9916c21132f8ea0d (diff)
use m_ prefix for compositor class members (all compositor operations).
Diffstat (limited to 'source/blender/compositor/operations/COM_ChannelMatteOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ChannelMatteOperation.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/source/blender/compositor/operations/COM_ChannelMatteOperation.h b/source/blender/compositor/operations/COM_ChannelMatteOperation.h
index 17db0f9ffe2..859df200020 100644
--- a/source/blender/compositor/operations/COM_ChannelMatteOperation.h
+++ b/source/blender/compositor/operations/COM_ChannelMatteOperation.h
@@ -30,16 +30,16 @@
*/
class ChannelMatteOperation : public NodeOperation {
private:
- SocketReader *inputImageProgram;
+ SocketReader *m_inputImageProgram;
- int color_space; /* node->custom1 */
- int matte_channel; /* node->custom2 */
- int limit_method; /* node->algorithm */
- int limit_channel; /* node->channel */
- float limit_max; /* node->storage->t1 */
- float limit_min; /* node->storage->t2 */
+ int m_color_space; /* node->custom1 */
+ int m_matte_channel; /* node->custom2 */
+ int m_limit_method; /* node->algorithm */
+ int m_limit_channel; /* node->channel */
+ float m_limit_max; /* node->storage->t1 */
+ float m_limit_min; /* node->storage->t2 */
- float limit_range;
+ float m_limit_range;
/** ids to use for the operations (max and simple)
* alpha = in[ids[0]] - max(in[ids[1]], in[ids[2]])
@@ -49,7 +49,7 @@ private:
* ids[2] = ids[1]
* alpha = in[ids[0]] - max(in[ids[1]], in[ids[2]])
*/
- int ids[3];
+ int m_ids[3];
public:
/**
* Default constructor
@@ -66,11 +66,11 @@ public:
void setSettings(NodeChroma *nodeChroma, const int custom2)
{
- this->limit_max = nodeChroma->t1;
- this->limit_min = nodeChroma->t2;
- this->limit_method = nodeChroma->algorithm;
- this->limit_channel = nodeChroma->channel;
- this->matte_channel = custom2;
+ this->m_limit_max = nodeChroma->t1;
+ this->m_limit_min = nodeChroma->t2;
+ this->m_limit_method = nodeChroma->algorithm;
+ this->m_limit_channel = nodeChroma->channel;
+ this->m_matte_channel = custom2;
}
};
#endif