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_MapUVOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_MapUVOperation.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_MapUVOperation.h b/source/blender/compositor/operations/COM_MapUVOperation.h
index 22e3531e838..c14640da61c 100644
--- a/source/blender/compositor/operations/COM_MapUVOperation.h
+++ b/source/blender/compositor/operations/COM_MapUVOperation.h
@@ -29,10 +29,10 @@ private:
/**
* Cached reference to the inputProgram
*/
- SocketReader *inputUVProgram;
- SocketReader *inputColorProgram;
+ SocketReader *m_inputUVProgram;
+ SocketReader *m_inputColorProgram;
- float alpha;
+ float m_alpha;
public:
MapUVOperation();
@@ -57,6 +57,6 @@ public:
*/
void deinitExecution();
- void setAlpha(float alpha) { this->alpha = alpha; }
+ void setAlpha(float alpha) { this->m_alpha = alpha; }
};
#endif