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_GlareThresholdOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_GlareThresholdOperation.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/compositor/operations/COM_GlareThresholdOperation.h b/source/blender/compositor/operations/COM_GlareThresholdOperation.h
index f37020b61a8..41eac34375d 100644
--- a/source/blender/compositor/operations/COM_GlareThresholdOperation.h
+++ b/source/blender/compositor/operations/COM_GlareThresholdOperation.h
@@ -26,9 +26,9 @@ namespace blender::compositor {
class GlareThresholdOperation : public MultiThreadedOperation {
private:
/**
- * \brief Cached reference to the inputProgram
+ * \brief Cached reference to the input_program
*/
- SocketReader *inputProgram_;
+ SocketReader *input_program_;
/**
* \brief settings of the glare node.
@@ -41,19 +41,19 @@ class GlareThresholdOperation : public MultiThreadedOperation {
/**
* 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;
/**
* Initialize the execution
*/
- void initExecution() override;
+ void init_execution() override;
/**
* Deinitialize the execution
*/
- void deinitExecution() override;
+ void deinit_execution() override;
- void setGlareSettings(NodeGlare *settings)
+ void set_glare_settings(NodeGlare *settings)
{
settings_ = settings;
}