From e12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 17 Apr 2019 06:17:24 +0200 Subject: 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 --- source/blender/compositor/COM_defines.h | 54 ++++++++++++++++----------------- 1 file changed, 27 insertions(+), 27 deletions(-) (limited to 'source/blender/compositor/COM_defines.h') 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__ */ -- cgit v1.2.3