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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-11-07 20:00:24 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-11-07 22:58:54 +0300
commit64ec05b64d106623f63dd308d0950866a22b6229 (patch)
treeac7613e56ac5bc4ad1ac3d8b03657b48b11d8bc2 /source/blender/editors/sculpt_paint/sculpt.c
parent1ff8be24ef8970f140865dfb118112ec08e7dfad (diff)
Cleanup: remove some useless BKE_library and BKE_main includes.
Makes it simpler to make some changes... Also fix order of some includes (use alphabetical please).
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt.c')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 84e189a86bf..bbd2f53ec78 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -52,9 +52,9 @@
#include "DNA_scene_types.h"
#include "DNA_brush_types.h"
-#include "BKE_pbvh.h"
#include "BKE_brush.h"
#include "BKE_ccg.h"
+#include "BKE_colortools.h"
#include "BKE_context.h"
#include "BKE_global.h"
#include "BKE_image.h"
@@ -65,13 +65,13 @@
#include "BKE_mesh_mapping.h"
#include "BKE_modifier.h"
#include "BKE_multires.h"
+#include "BKE_node.h"
+#include "BKE_object.h"
#include "BKE_paint.h"
+#include "BKE_pbvh.h"
#include "BKE_report.h"
#include "BKE_screen.h"
-#include "BKE_node.h"
-#include "BKE_object.h"
#include "BKE_subsurf.h"
-#include "BKE_colortools.h"
#include "DEG_depsgraph.h"
#include "DEG_depsgraph_query.h"