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-03-18 06:21:37 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-18 06:23:34 +0300
commit8f5ba8e1a1df2e496bbf24573a68cffe564e24db (patch)
tree113e56cea5c395c02619613b4d2143a2d86da53f /source/blender/makesdna/DNA_nla_types.h
parent317cb1dd6507be3e043e32eb1ddaece509bbbbb5 (diff)
Cleanup: spaces around operators in DNA headers
Diffstat (limited to 'source/blender/makesdna/DNA_nla_types.h')
-rw-r--r--source/blender/makesdna/DNA_nla_types.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/makesdna/DNA_nla_types.h b/source/blender/makesdna/DNA_nla_types.h
index f1b1ab21116..4095a5dc99b 100644
--- a/source/blender/makesdna/DNA_nla_types.h
+++ b/source/blender/makesdna/DNA_nla_types.h
@@ -94,20 +94,20 @@ typedef struct bActionStrip {
/* strip->flag */
typedef enum eActStrip_Flag {
- ACTSTRIP_SELECT = (1<<0),
- ACTSTRIP_USESTRIDE = (1<<1),
+ ACTSTRIP_SELECT = (1 << 0),
+ ACTSTRIP_USESTRIDE = (1 << 1),
/* Not implemented. Is not used anywhere */
- ACTSTRIP_BLENDTONEXT = (1<<2),
- ACTSTRIP_HOLDLASTFRAME = (1<<3),
- ACTSTRIP_ACTIVE = (1<<4),
- ACTSTRIP_LOCK_ACTION = (1<<5),
- ACTSTRIP_MUTE = (1<<6),
+ ACTSTRIP_BLENDTONEXT = (1 << 2),
+ ACTSTRIP_HOLDLASTFRAME = (1 << 3),
+ ACTSTRIP_ACTIVE = (1 << 4),
+ ACTSTRIP_LOCK_ACTION = (1 << 5),
+ ACTSTRIP_MUTE = (1 << 6),
/* This has yet to be implemented. To indicate that a strip should be played backwards */
- ACTSTRIP_REVERSE = (1<<7),
- ACTSTRIP_CYCLIC_USEX = (1<<8),
- ACTSTRIP_CYCLIC_USEY = (1<<9),
- ACTSTRIP_CYCLIC_USEZ = (1<<10),
- ACTSTRIP_AUTO_BLENDS = (1<<11),
+ ACTSTRIP_REVERSE = (1 << 7),
+ ACTSTRIP_CYCLIC_USEX = (1 << 8),
+ ACTSTRIP_CYCLIC_USEY = (1 << 9),
+ ACTSTRIP_CYCLIC_USEZ = (1 << 10),
+ ACTSTRIP_AUTO_BLENDS = (1 << 11),
} eActStrip_Flag;
#endif