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>2013-04-13 04:43:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-13 04:43:49 +0400
commit2f9b7410dc712961f5684e4892660167c693cda8 (patch)
tree8898f0650969eba414f105fcf7edba10627a2968 /source/blender/makesdna
parent7cf1d86e4adc4893485e34229ccbc0537931c929 (diff)
code cleanup: warnings + style
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_scene_types.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index dc3022e3b03..b306bc9a64f 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -920,18 +920,18 @@ typedef struct UnifiedPaintSettings {
} UnifiedPaintSettings;
typedef enum {
- UNIFIED_PAINT_SIZE = (1<<0),
- UNIFIED_PAINT_ALPHA = (1<<1),
- UNIFIED_PAINT_WEIGHT = (1<<5),
+ UNIFIED_PAINT_SIZE = (1 << 0),
+ UNIFIED_PAINT_ALPHA = (1 << 1),
+ UNIFIED_PAINT_WEIGHT = (1 << 5),
/* only used if unified size is enabled, mirros the brush flags
* BRUSH_LOCK_SIZE and BRUSH_SIZE_PRESSURE */
- UNIFIED_PAINT_BRUSH_LOCK_SIZE = (1<<2),
- UNIFIED_PAINT_BRUSH_SIZE_PRESSURE = (1<<3),
+ UNIFIED_PAINT_BRUSH_LOCK_SIZE = (1 << 2),
+ UNIFIED_PAINT_BRUSH_SIZE_PRESSURE = (1 << 3),
/* only used if unified alpha is enabled, mirrors the brush flag
* BRUSH_ALPHA_PRESSURE */
- UNIFIED_PAINT_BRUSH_ALPHA_PRESSURE = (1<<4)
+ UNIFIED_PAINT_BRUSH_ALPHA_PRESSURE = (1 << 4)
} UnifiedPaintSettingsFlags;
/* *************************************************************** */
@@ -1508,24 +1508,24 @@ typedef enum {
/* Sculpt.flags */
/* These can eventually be moved to paint flags? */
typedef enum SculptFlags {
- SCULPT_SYMM_X = (1<<0),
- SCULPT_SYMM_Y = (1<<1),
- SCULPT_SYMM_Z = (1<<2),
- SCULPT_LOCK_X = (1<<3),
- SCULPT_LOCK_Y = (1<<4),
- SCULPT_LOCK_Z = (1<<5),
- SCULPT_SYMMETRY_FEATHER = (1<<6),
- SCULPT_USE_OPENMP = (1<<7),
- SCULPT_ONLY_DEFORM = (1<<8),
- SCULPT_SHOW_DIFFUSE = (1<<9),
+ SCULPT_SYMM_X = (1 << 0),
+ SCULPT_SYMM_Y = (1 << 1),
+ SCULPT_SYMM_Z = (1 << 2),
+ SCULPT_LOCK_X = (1 << 3),
+ SCULPT_LOCK_Y = (1 << 4),
+ SCULPT_LOCK_Z = (1 << 5),
+ SCULPT_SYMMETRY_FEATHER = (1 << 6),
+ SCULPT_USE_OPENMP = (1 << 7),
+ SCULPT_ONLY_DEFORM = (1 << 8),
+ SCULPT_SHOW_DIFFUSE = (1 << 9),
/* If set, the mesh will be drawn with smooth-shading in
* dynamic-topology mode */
- SCULPT_DYNTOPO_SMOOTH_SHADING = (1<<10),
+ SCULPT_DYNTOPO_SMOOTH_SHADING = (1 << 10),
/* If set, dynamic-topology brushes will collapse short edges in
* addition to subdividing long ones */
- SCULPT_DYNTOPO_COLLAPSE = (1<<11)
+ SCULPT_DYNTOPO_COLLAPSE = (1 << 11)
} SculptFlags;
/* ImagePaintSettings.flag */