[Bf-blender-cvs] [1797923f328] blender2.8: Depsgraph: Cleanup, extra whitespace

Sergey Sharybin noreply at git.blender.org
Fri Dec 15 17:24:18 CET 2017


Commit: 1797923f32899e3e26cab24e232f9064c603daad
Author: Sergey Sharybin
Date:   Fri Dec 15 15:01:21 2017 +0100
Branches: blender2.8
https://developer.blender.org/rB1797923f32899e3e26cab24e232f9064c603daad

Depsgraph: Cleanup, extra whitespace

===================================================================

M	source/blender/depsgraph/DEG_depsgraph.h

===================================================================

diff --git a/source/blender/depsgraph/DEG_depsgraph.h b/source/blender/depsgraph/DEG_depsgraph.h
index 3d85d523657..aaa6142fa21 100644
--- a/source/blender/depsgraph/DEG_depsgraph.h
+++ b/source/blender/depsgraph/DEG_depsgraph.h
@@ -143,13 +143,10 @@ void DEG_on_visible_update(struct Main *bmain, const bool do_time);
 enum {
 	/* Object transformation changed, corresponds to OB_RECALC_OB. */
 	DEG_TAG_TRANSFORM   = (1 << 0),
-
 	/* Object geoemtry changed, corresponds to OB_RECALC_DATA. */
 	DEG_TAG_GEOMETRY    = (1 << 1),
-
 	/* Time changed and animation is to be re-evaluated, OB_RECALC_TIME. */
 	DEG_TAG_TIME        = (1 << 2),
-
 	/* Particle system changed. */
 	DEG_TAG_PSYS_REDO   = (1 << 3),
 	DEG_TAG_PSYS_RESET  = (1 << 4),
@@ -161,17 +158,14 @@ enum {
 	                       DEG_TAG_PSYS_TYPE |
 	                       DEG_TAG_PSYS_CHILD |
 	                       DEG_TAG_PSYS_PHYS),
-
 	/* Update copy on write component without flushing down the road. */
 	DEG_TAG_COPY_ON_WRITE = (1 << 8),
-
 	/* Tag shading components for update.
 	 * Only parameters of material changed).
 	 */
 	DEG_TAG_SHADING_UPDATE  = (1 << 9),
 	DEG_TAG_SELECT_UPDATE   = (1 << 10),
 	DEG_TAG_BASE_FLAGS_UPDATE = (1 << 11),
-
 	/* Only inform editors about the change. Don't modify datablock itself. */
 	DEG_TAG_EDITORS_UPDATE = (1 << 12),
 };



More information about the Bf-blender-cvs mailing list