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:
authorManuel Castilla <manzanillawork@gmail.com>2021-10-08 02:09:26 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-10-08 02:29:02 +0300
commit4a22faf15a0cd027f724d515d06b24ba47cac03c (patch)
tree2f5fe18a57b9523eb1339284a05dab2d199d5db4 /source/blender/compositor/operations/COM_GaussianBokehBlurOperation.h
parent12a5a605572d742335a4978966444d393792cd28 (diff)
Cleanup: Convert camelCase naming to snake_case in Compositortemp-compositor-cleanups
To follow the style guide.
Diffstat (limited to 'source/blender/compositor/operations/COM_GaussianBokehBlurOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_GaussianBokehBlurOperation.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/source/blender/compositor/operations/COM_GaussianBokehBlurOperation.h b/source/blender/compositor/operations/COM_GaussianBokehBlurOperation.h
index 5e6eeefa512..923daf7a447 100644
--- a/source/blender/compositor/operations/COM_GaussianBokehBlurOperation.h
+++ b/source/blender/compositor/operations/COM_GaussianBokehBlurOperation.h
@@ -30,26 +30,26 @@ class GaussianBokehBlurOperation : public BlurBaseOperation {
int radx_, rady_;
float radxf_;
float radyf_;
- void updateGauss();
+ void update_gauss();
public:
GaussianBokehBlurOperation();
void init_data() override;
- void initExecution() override;
- void *initializeTileData(rcti *rect) override;
+ void init_execution() override;
+ void *initialize_tile_data(rcti *rect) override;
/**
* The inner loop of this operation.
*/
- void executePixel(float output[4], int x, int y, void *data) override;
+ void execute_pixel(float output[4], int x, int y, void *data) override;
/**
* Deinitialize the execution
*/
- void deinitExecution() override;
+ void deinit_execution() override;
- bool determineDependingAreaOfInterest(rcti *input,
- ReadBufferOperation *readOperation,
- rcti *output) override;
+ bool determine_depending_area_of_interest(rcti *input,
+ ReadBufferOperation *read_operation,
+ rcti *output) override;
void get_area_of_interest(const int input_idx,
const rcti &output_area,
@@ -63,7 +63,7 @@ class GaussianBlurReferenceOperation : public BlurBaseOperation {
private:
float **maintabs_;
- void updateGauss();
+ void update_gauss();
int filtersizex_;
int filtersizey_;
float radx_;
@@ -72,21 +72,21 @@ class GaussianBlurReferenceOperation : public BlurBaseOperation {
public:
GaussianBlurReferenceOperation();
void init_data() override;
- void initExecution() override;
- void *initializeTileData(rcti *rect) override;
+ void init_execution() override;
+ void *initialize_tile_data(rcti *rect) override;
/**
* The inner loop of this operation.
*/
- void executePixel(float output[4], int x, int y, void *data) override;
+ void execute_pixel(float output[4], int x, int y, void *data) override;
/**
* Deinitialize the execution
*/
- void deinitExecution() override;
+ void deinit_execution() override;
- bool determineDependingAreaOfInterest(rcti *input,
- ReadBufferOperation *readOperation,
- rcti *output) override;
+ bool determine_depending_area_of_interest(rcti *input,
+ ReadBufferOperation *read_operation,
+ rcti *output) override;
void get_area_of_interest(const int input_idx,
const rcti &output_area,