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-01-15 15:57:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-15 16:03:03 +0300
commit88a80fcec8672b5bb67041456dc7f7101aae3d55 (patch)
treee1b93fd997bba2e0481395bb51b51058eb9aa990 /source/blender/compositor/COM_defines.h
parent2d98dce7ee29b7e5d685ee5de9aa1e4eebe46a01 (diff)
Cleanup: commas at the end of enums
Without this clang-format may wrap them onto a single line.
Diffstat (limited to 'source/blender/compositor/COM_defines.h')
-rw-r--r--source/blender/compositor/COM_defines.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/COM_defines.h b/source/blender/compositor/COM_defines.h
index 34cbaf9db37..096d9e734f9 100644
--- a/source/blender/compositor/COM_defines.h
+++ b/source/blender/compositor/COM_defines.h
@@ -33,7 +33,7 @@ typedef enum DataType {
/** \brief Vector data type */
COM_DT_VECTOR = 2,
/** \brief Color data type */
- COM_DT_COLOR = 4
+ COM_DT_COLOR = 4,
} DataType;
/**
@@ -47,7 +47,7 @@ typedef enum CompositorQuality {
/** \brief Medium quality setting */
COM_QUALITY_MEDIUM = 1,
/** \brief Low quality setting */
- COM_QUALITY_LOW = 2
+ COM_QUALITY_LOW = 2,
} CompositorQuality;
/**
@@ -60,7 +60,7 @@ typedef enum CompositorPriority {
/** \brief Medium quality setting */
COM_PRIORITY_MEDIUM = 1,
/** \brief Low quality setting */
- COM_PRIORITY_LOW = 0
+ COM_PRIORITY_LOW = 0,
} CompositorPriority;
// configurable items
@@ -98,7 +98,7 @@ typedef enum OrderOfChunks {
/** \brief no ordering */
COM_TO_TOP_DOWN = 2,
/** \brief experimental ordering with 9 hotspots */
- COM_TO_RULE_OF_THIRDS = 3
+ COM_TO_RULE_OF_THIRDS = 3,
} OrderOfChunks;
#define COM_ORDER_OF_CHUNKS_DEFAULT COM_TO_CENTER_OUT