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_AlphaOverMixedOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_AlphaOverMixedOperation.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h b/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h
index 319176c8c9f..65967c03eb9 100644
--- a/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h
+++ b/source/blender/compositor/operations/COM_AlphaOverMixedOperation.h
@@ -28,7 +28,7 @@ namespace blender::compositor {
*/
class AlphaOverMixedOperation : public MixBaseOperation {
private:
- float m_x;
+ float x_;
public:
/**
@@ -43,7 +43,7 @@ class AlphaOverMixedOperation : public MixBaseOperation {
void setX(float x)
{
- m_x = x;
+ x_ = x;
}
void update_memory_buffer_row(PixelCursor &p) override;