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_GammaCorrectOperation.cc')
-rw-r--r--source/blender/compositor/operations/COM_GammaCorrectOperation.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_GammaCorrectOperation.cc b/source/blender/compositor/operations/COM_GammaCorrectOperation.cc
index 0271e57b2c4..57d2ebd1b84 100644
--- a/source/blender/compositor/operations/COM_GammaCorrectOperation.cc
+++ b/source/blender/compositor/operations/COM_GammaCorrectOperation.cc
@@ -25,7 +25,7 @@ GammaCorrectOperation::GammaCorrectOperation()
this->add_input_socket(DataType::Color);
this->add_output_socket(DataType::Color);
input_program_ = nullptr;
- flags.can_be_constant = true;
+ flags_.can_be_constant = true;
}
void GammaCorrectOperation::init_execution()
{
@@ -96,7 +96,7 @@ GammaUncorrectOperation::GammaUncorrectOperation()
this->add_input_socket(DataType::Color);
this->add_output_socket(DataType::Color);
input_program_ = nullptr;
- flags.can_be_constant = true;
+ flags_.can_be_constant = true;
}
void GammaUncorrectOperation::init_execution()
{