From 4a22faf15a0cd027f724d515d06b24ba47cac03c Mon Sep 17 00:00:00 2001 From: Manuel Castilla Date: Fri, 8 Oct 2021 01:09:26 +0200 Subject: Cleanup: Convert camelCase naming to snake_case in Compositor To follow the style guide. --- source/blender/compositor/operations/COM_GammaOperation.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/blender/compositor/operations/COM_GammaOperation.h') diff --git a/source/blender/compositor/operations/COM_GammaOperation.h b/source/blender/compositor/operations/COM_GammaOperation.h index 9b68a2c8a1b..d8703a0a19a 100644 --- a/source/blender/compositor/operations/COM_GammaOperation.h +++ b/source/blender/compositor/operations/COM_GammaOperation.h @@ -25,10 +25,10 @@ namespace blender::compositor { class GammaOperation : public MultiThreadedRowOperation { private: /** - * Cached reference to the inputProgram + * Cached reference to the input_program */ - SocketReader *inputProgram_; - SocketReader *inputGammaProgram_; + SocketReader *input_program_; + SocketReader *input_gamma_program_; public: GammaOperation(); @@ -36,17 +36,17 @@ class GammaOperation : public MultiThreadedRowOperation { /** * 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 update_memory_buffer_row(PixelCursor &p) override; }; -- cgit v1.2.3