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_SetValueOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_SetValueOperation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_SetValueOperation.h b/source/blender/compositor/operations/COM_SetValueOperation.h
index bf914d2f918..4c824d00294 100644
--- a/source/blender/compositor/operations/COM_SetValueOperation.h
+++ b/source/blender/compositor/operations/COM_SetValueOperation.h
@@ -41,11 +41,11 @@ class SetValueOperation : public ConstantOperation {
return &value_;
}
- float getValue()
+ float get_value()
{
return value_;
}
- void setValue(float value)
+ void set_value(float value)
{
value_ = value;
}
@@ -53,7 +53,7 @@ class SetValueOperation : public ConstantOperation {
/**
* The inner loop of this operation.
*/
- void executePixelSampled(float output[4], float x, float y, PixelSampler sampler) override;
+ void execute_pixel_sampled(float output[4], float x, float y, PixelSampler sampler) override;
void determine_canvas(const rcti &preferred_area, rcti &r_area) override;
};