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_node_types.h
parent317cb1dd6507be3e043e32eb1ddaece509bbbbb5 (diff)
Cleanup: spaces around operators in DNA headers
Diffstat (limited to 'source/blender/makesdna/DNA_node_types.h')
-rw-r--r--source/blender/makesdna/DNA_node_types.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/makesdna/DNA_node_types.h b/source/blender/makesdna/DNA_node_types.h
index a255646b734..0f06aed8bca 100644
--- a/source/blender/makesdna/DNA_node_types.h
+++ b/source/blender/makesdna/DNA_node_types.h
@@ -307,31 +307,31 @@ typedef struct bNode {
#define NODE_MUTED 512
// #define NODE_CUSTOM_NAME 1024 /* deprecated! */
/* group node types: use const outputs by default */
-#define NODE_CONST_OUTPUT (1<<11)
+#define NODE_CONST_OUTPUT (1 << 11)
/* node is always behind others */
-#define NODE_BACKGROUND (1<<12)
+#define NODE_BACKGROUND (1 << 12)
/* automatic flag for nodes included in transforms */
-#define NODE_TRANSFORM (1<<13)
+#define NODE_TRANSFORM (1 << 13)
/* node is active texture */
/* note: take care with this flag since its possible it gets
* `stuck` inside/outside the active group - which makes buttons
* window texture not update, we try to avoid it by clearing the
* flag when toggling group editing - Campbell */
-#define NODE_ACTIVE_TEXTURE (1<<14)
+#define NODE_ACTIVE_TEXTURE (1 << 14)
/* use a custom color for the node */
-#define NODE_CUSTOM_COLOR (1<<15)
+#define NODE_CUSTOM_COLOR (1 << 15)
/* Node has been initialized
* This flag indicates the node->typeinfo->init function has been called.
* In case of undefined type at creation time this can be delayed until
* until the node type is registered.
*/
-#define NODE_INIT (1<<16)
+#define NODE_INIT (1 << 16)
/* do recalc of output, used to skip recalculation of unwanted
* composite out nodes when editing tree
*/
-#define NODE_DO_OUTPUT_RECALC (1<<17)
+#define NODE_DO_OUTPUT_RECALC (1 << 17)
/* node->update */
/* XXX NODE_UPDATE is a generic update flag. More fine-grained updates