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/compositor/COM_defines.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/compositor/COM_defines.h')
-rw-r--r--source/blender/compositor/COM_defines.h54
1 files changed, 27 insertions, 27 deletions
diff --git a/source/blender/compositor/COM_defines.h b/source/blender/compositor/COM_defines.h
index 926b63de682..de731b8e0da 100644
--- a/source/blender/compositor/COM_defines.h
+++ b/source/blender/compositor/COM_defines.h
@@ -24,12 +24,12 @@
* \ingroup Model
*/
typedef enum DataType {
- /** \brief Value data type */
- COM_DT_VALUE = 1,
- /** \brief Vector data type */
- COM_DT_VECTOR = 2,
- /** \brief Color data type */
- COM_DT_COLOR = 4,
+ /** \brief Value data type */
+ COM_DT_VALUE = 1,
+ /** \brief Vector data type */
+ COM_DT_VECTOR = 2,
+ /** \brief Color data type */
+ COM_DT_COLOR = 4,
} DataType;
/**
@@ -38,12 +38,12 @@ typedef enum DataType {
* \ingroup Execution
*/
typedef enum CompositorQuality {
- /** \brief High quality setting */
- COM_QUALITY_HIGH = 0,
- /** \brief Medium quality setting */
- COM_QUALITY_MEDIUM = 1,
- /** \brief Low quality setting */
- COM_QUALITY_LOW = 2,
+ /** \brief High quality setting */
+ COM_QUALITY_HIGH = 0,
+ /** \brief Medium quality setting */
+ COM_QUALITY_MEDIUM = 1,
+ /** \brief Low quality setting */
+ COM_QUALITY_LOW = 2,
} CompositorQuality;
/**
@@ -51,12 +51,12 @@ typedef enum CompositorQuality {
* \ingroup Execution
*/
typedef enum CompositorPriority {
- /** \brief High quality setting */
- COM_PRIORITY_HIGH = 2,
- /** \brief Medium quality setting */
- COM_PRIORITY_MEDIUM = 1,
- /** \brief Low quality setting */
- COM_PRIORITY_LOW = 0,
+ /** \brief High quality setting */
+ COM_PRIORITY_HIGH = 2,
+ /** \brief Medium quality setting */
+ COM_PRIORITY_MEDIUM = 1,
+ /** \brief Low quality setting */
+ COM_PRIORITY_LOW = 0,
} CompositorPriority;
// configurable items
@@ -87,14 +87,14 @@ typedef enum CompositorPriority {
* \ingroup Execution
*/
typedef enum OrderOfChunks {
- /** \brief order from a distance to centerX/centerY */
- COM_TO_CENTER_OUT = 0,
- /** \brief order randomly */
- COM_TO_RANDOM = 1,
- /** \brief no ordering */
- COM_TO_TOP_DOWN = 2,
- /** \brief experimental ordering with 9 hotspots */
- COM_TO_RULE_OF_THIRDS = 3,
+ /** \brief order from a distance to centerX/centerY */
+ COM_TO_CENTER_OUT = 0,
+ /** \brief order randomly */
+ COM_TO_RANDOM = 1,
+ /** \brief no ordering */
+ COM_TO_TOP_DOWN = 2,
+ /** \brief experimental ordering with 9 hotspots */
+ COM_TO_RULE_OF_THIRDS = 3,
} OrderOfChunks;
#define COM_ORDER_OF_CHUNKS_DEFAULT COM_TO_CENTER_OUT
@@ -107,4 +107,4 @@ typedef enum OrderOfChunks {
#define COM_BLUR_BOKEH_PIXELS 512
-#endif /* __COM_DEFINES_H__ */
+#endif /* __COM_DEFINES_H__ */