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_KeyingBlurOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_KeyingBlurOperation.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/operations/COM_KeyingBlurOperation.h b/source/blender/compositor/operations/COM_KeyingBlurOperation.h
index 41ccb465eab..6e08712bf39 100644
--- a/source/blender/compositor/operations/COM_KeyingBlurOperation.h
+++ b/source/blender/compositor/operations/COM_KeyingBlurOperation.h
@@ -31,8 +31,8 @@
*/
class KeyingBlurOperation : public NodeOperation {
protected:
- int size;
- int axis;
+ int m_size;
+ int m_axis;
public:
enum BlurAxis {
@@ -42,8 +42,8 @@ public:
KeyingBlurOperation();
- void setSize(int value) {this->size = value;}
- void setAxis(int value) {this->axis = value;}
+ void setSize(int value) {this->m_size = value;}
+ void setAxis(int value) {this->m_axis = value;}
void *initializeTileData(rcti *rect, MemoryBuffer **memoryBuffers);