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_KeyingDespillOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_KeyingDespillOperation.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/compositor/operations/COM_KeyingDespillOperation.h b/source/blender/compositor/operations/COM_KeyingDespillOperation.h
index 257c24f3b58..51efa44ce1c 100644
--- a/source/blender/compositor/operations/COM_KeyingDespillOperation.h
+++ b/source/blender/compositor/operations/COM_KeyingDespillOperation.h
@@ -27,10 +27,10 @@ namespace blender::compositor {
*/
class KeyingDespillOperation : public MultiThreadedOperation {
protected:
- SocketReader *m_pixelReader;
- SocketReader *m_screenReader;
- float m_despillFactor;
- float m_colorBalance;
+ SocketReader *pixelReader_;
+ SocketReader *screenReader_;
+ float despillFactor_;
+ float colorBalance_;
public:
KeyingDespillOperation();
@@ -40,11 +40,11 @@ class KeyingDespillOperation : public MultiThreadedOperation {
void setDespillFactor(float value)
{
- m_despillFactor = value;
+ despillFactor_ = value;
}
void setColorBalance(float value)
{
- m_colorBalance = value;
+ colorBalance_ = value;
}
void executePixelSampled(float output[4], float x, float y, PixelSampler sampler) override;