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-14 00:01:15 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:41:14 +0300
commit1c42d4930a24d639b3aa561b9a8b4bbce05977e0 (patch)
tree68c2aae3fd5ae98b78708bea28c0b55d3f4fb5f0 /source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h
parenta2ee3c3a9f01f5cb2f05f1e84a1b6c1931d9d4a4 (diff)
Cleanup: convert camelCase naming to snake_case in Compositor
To convert old code to the current convention and use a single code style.
Diffstat (limited to 'source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h b/source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h
index a6e76e6190e..9f8bf2ed127 100644
--- a/source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h
+++ b/source/blender/compositor/operations/COM_OutputFileMultiViewOperation.h
@@ -38,13 +38,13 @@ class OutputOpenExrSingleLayerMultiViewOperation : public OutputSingleLayerOpera
DataType datatype,
ImageFormatData *format,
const char *path,
- const ColorManagedViewSettings *viewSettings,
- const ColorManagedDisplaySettings *displaySettings,
- const char *viewName,
- const bool saveAsRender);
+ const ColorManagedViewSettings *view_settings,
+ const ColorManagedDisplaySettings *display_settings,
+ const char *view_name,
+ const bool save_as_render);
void *get_handle(const char *filename);
- void deinitExecution() override;
+ void deinit_execution() override;
};
/* Writes inputs into OpenEXR multilayer channels. */
@@ -57,10 +57,10 @@ class OutputOpenExrMultiLayerMultiViewOperation : public OutputOpenExrMultiLayer
const char *path,
char exr_codec,
bool exr_half_float,
- const char *viewName);
+ const char *view_name);
void *get_handle(const char *filename);
- void deinitExecution() override;
+ void deinit_execution() override;
};
class OutputStereoOperation : public OutputSingleLayerOperation {
@@ -75,12 +75,12 @@ class OutputStereoOperation : public OutputSingleLayerOperation {
struct ImageFormatData *format,
const char *path,
const char *name,
- const ColorManagedViewSettings *viewSettings,
- const ColorManagedDisplaySettings *displaySettings,
- const char *viewName,
- const bool saveAsRender);
+ const ColorManagedViewSettings *view_settings,
+ const ColorManagedDisplaySettings *display_settings,
+ const char *view_name,
+ const bool save_as_render);
void *get_handle(const char *filename);
- void deinitExecution() override;
+ void deinit_execution() override;
};
} // namespace blender::compositor