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_KeyingOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_KeyingOperation.h18
1 files changed, 8 insertions, 10 deletions
diff --git a/source/blender/compositor/operations/COM_KeyingOperation.h b/source/blender/compositor/operations/COM_KeyingOperation.h
index 8d0e7851ee5..736db54850a 100644
--- a/source/blender/compositor/operations/COM_KeyingOperation.h
+++ b/source/blender/compositor/operations/COM_KeyingOperation.h
@@ -32,16 +32,16 @@
#include "BLI_listbase.h"
/**
- * Class with implementation of keying node
- */
+ * Class with implementation of keying node
+ */
class KeyingOperation : public NodeOperation {
protected:
- SocketReader *pixelReader;
- SocketReader *screenReader;
- SocketReader *garbageReader;
- SocketReader *coreReader;
+ SocketReader *m_pixelReader;
+ SocketReader *m_screenReader;
+ SocketReader *m_garbageReader;
+ SocketReader *m_coreReader;
- float screenBalance;
+ float m_screenBalance;
public:
KeyingOperation();
@@ -49,11 +49,9 @@ public:
void initExecution();
void deinitExecution();
- void setScreenBalance(float value) {this->screenBalance = value;}
+ void setScreenBalance(float value) {this->m_screenBalance = value;}
void executePixel(float *color, float x, float y, PixelSampler sampler, MemoryBuffer *inputBuffers[]);
-
- bool determineDependingAreaOfInterest(rcti *input, ReadBufferOperation *readOperation, rcti *output);
};
#endif