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_ChangeHSVOperation.h
parent7a0ab62d3f65f3b28da2a6ba9916c21132f8ea0d (diff)
use m_ prefix for compositor class members (all compositor operations).
Diffstat (limited to 'source/blender/compositor/operations/COM_ChangeHSVOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ChangeHSVOperation.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/compositor/operations/COM_ChangeHSVOperation.h b/source/blender/compositor/operations/COM_ChangeHSVOperation.h
index a2a6c034a82..9c343db9c3c 100644
--- a/source/blender/compositor/operations/COM_ChangeHSVOperation.h
+++ b/source/blender/compositor/operations/COM_ChangeHSVOperation.h
@@ -31,11 +31,11 @@
*/
class ChangeHSVOperation : public NodeOperation {
private:
- SocketReader *inputOperation;
+ SocketReader *m_inputOperation;
- float hue;
- float saturation;
- float value;
+ float m_hue;
+ float m_saturation;
+ float m_value;
public:
/**
@@ -51,9 +51,9 @@ public:
*/
void executePixel(float *color, float x, float y, PixelSampler sampler, MemoryBuffer * inputBuffers[]);
- void setHue(float hue) { this->hue = hue; }
- void setSaturation(float saturation) { this->saturation = saturation; }
- void setValue(float value) { this->value = value; }
+ void setHue(float hue) { this->m_hue = hue; }
+ void setSaturation(float saturation) { this->m_saturation = saturation; }
+ void setValue(float value) { this->m_value = value; }
};
#endif