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_ColorBalanceASCCDLOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h b/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h
index b9b3d45a68b..79c5cc1a047 100644
--- a/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h
+++ b/source/blender/compositor/operations/COM_ColorBalanceASCCDLOperation.h
@@ -31,12 +31,12 @@ class ColorBalanceASCCDLOperation : public MultiThreadedRowOperation {
/**
* Prefetched reference to the inputProgram
*/
- SocketReader *m_inputValueOperation;
- SocketReader *m_inputColorOperation;
+ SocketReader *inputValueOperation_;
+ SocketReader *inputColorOperation_;
- float m_offset[3];
- float m_power[3];
- float m_slope[3];
+ float offset_[3];
+ float power_[3];
+ float slope_[3];
public:
/**
@@ -61,15 +61,15 @@ class ColorBalanceASCCDLOperation : public MultiThreadedRowOperation {
void setOffset(float offset[3])
{
- copy_v3_v3(m_offset, offset);
+ copy_v3_v3(offset_, offset);
}
void setPower(float power[3])
{
- copy_v3_v3(m_power, power);
+ copy_v3_v3(power_, power);
}
void setSlope(float slope[3])
{
- copy_v3_v3(m_slope, slope);
+ copy_v3_v3(slope_, slope);
}
void update_memory_buffer_row(PixelCursor &p) override;