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:
authorCampbell Barton <ideasman42@gmail.com>2019-04-17 07:17:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-17 07:21:24 +0300
commite12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 (patch)
tree8cf3453d12edb177a218ef8009357518ec6cab6a /source/blender/imbuf/intern/openexr/openexr_multi.h
parentb3dabc200a4b0399ec6b81f2ff2730d07b44fcaa (diff)
ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
Diffstat (limited to 'source/blender/imbuf/intern/openexr/openexr_multi.h')
-rw-r--r--source/blender/imbuf/intern/openexr/openexr_multi.h93
1 files changed, 57 insertions, 36 deletions
diff --git a/source/blender/imbuf/intern/openexr/openexr_multi.h b/source/blender/imbuf/intern/openexr/openexr_multi.h
index 974b3fe3ca0..58f103aeba0 100644
--- a/source/blender/imbuf/intern/openexr/openexr_multi.h
+++ b/source/blender/imbuf/intern/openexr/openexr_multi.h
@@ -21,7 +21,6 @@
* \ingroup openexr
*/
-
#ifndef __OPENEXR_MULTI_H__
#define __OPENEXR_MULTI_H__
@@ -29,12 +28,11 @@
/* XXX layer+pass name max 64? */
/* This api also supports max 8 channels per pass now. easy to fix! */
-#define EXR_LAY_MAXNAME 64
-#define EXR_PASS_MAXNAME 64
-#define EXR_VIEW_MAXNAME 64
-#define EXR_TOT_MAXNAME 64
-#define EXR_PASS_MAXCHAN 24
-
+#define EXR_LAY_MAXNAME 64
+#define EXR_PASS_MAXNAME 64
+#define EXR_VIEW_MAXNAME 64
+#define EXR_TOT_MAXNAME 64
+#define EXR_PASS_MAXCHAN 24
#ifdef __cplusplus
extern "C" {
@@ -44,39 +42,62 @@ struct StampData;
void *IMB_exr_get_handle(void);
void *IMB_exr_get_handle_name(const char *name);
-void IMB_exr_add_channel(void *handle,
- const char *layname, const char *passname, const char *view,
- int xstride, int ystride,
- float *rect,
- bool use_half_float);
-
-int IMB_exr_begin_read(void *handle, const char *filename, int *width, int *height);
-int IMB_exr_begin_write(void *handle, const char *filename, int width, int height, int compress, const struct StampData *stamp);
-void IMB_exrtile_begin_write(void *handle, const char *filename, int mipmap, int width, int height, int tilex, int tiley);
-
-void IMB_exr_set_channel(void *handle, const char *layname, const char *passname, int xstride, int ystride, float *rect);
-float *IMB_exr_channel_rect(void *handle, const char *layname, const char *passname, const char *view);
-
-void IMB_exr_read_channels(void *handle);
-void IMB_exr_write_channels(void *handle);
-void IMB_exrtile_write_channels(void *handle, int partx, int party, int level, const char *viewname, bool empty);
-void IMB_exr_clear_channels(void *handle);
-
-void IMB_exr_multilayer_convert(
- void *handle, void *base,
- void * (*addview)(void *base, const char *str),
- void * (*addlayer)(void *base, const char *str),
- void (*addpass)(void *base, void *lay, const char *str, float *rect, int totchan,
- const char *chan_id, const char *view));
-
-void IMB_exr_close(void *handle);
-
-void IMB_exr_add_view(void *handle, const char *name);
+void IMB_exr_add_channel(void *handle,
+ const char *layname,
+ const char *passname,
+ const char *view,
+ int xstride,
+ int ystride,
+ float *rect,
+ bool use_half_float);
+
+int IMB_exr_begin_read(void *handle, const char *filename, int *width, int *height);
+int IMB_exr_begin_write(void *handle,
+ const char *filename,
+ int width,
+ int height,
+ int compress,
+ const struct StampData *stamp);
+void IMB_exrtile_begin_write(
+ void *handle, const char *filename, int mipmap, int width, int height, int tilex, int tiley);
+
+void IMB_exr_set_channel(void *handle,
+ const char *layname,
+ const char *passname,
+ int xstride,
+ int ystride,
+ float *rect);
+float *IMB_exr_channel_rect(void *handle,
+ const char *layname,
+ const char *passname,
+ const char *view);
+
+void IMB_exr_read_channels(void *handle);
+void IMB_exr_write_channels(void *handle);
+void IMB_exrtile_write_channels(
+ void *handle, int partx, int party, int level, const char *viewname, bool empty);
+void IMB_exr_clear_channels(void *handle);
+
+void IMB_exr_multilayer_convert(void *handle,
+ void *base,
+ void *(*addview)(void *base, const char *str),
+ void *(*addlayer)(void *base, const char *str),
+ void (*addpass)(void *base,
+ void *lay,
+ const char *str,
+ float *rect,
+ int totchan,
+ const char *chan_id,
+ const char *view));
+
+void IMB_exr_close(void *handle);
+
+void IMB_exr_add_view(void *handle, const char *name);
bool IMB_exr_has_multilayer(void *handle);
#ifdef __cplusplus
-} // extern "C"
+} // extern "C"
#endif
#endif /* __OPENEXR_MULTI_H */