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-05-30 06:16:22 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-30 06:16:22 +0400
commit9fb3d3e0322cb6692f822ee374de1ec03ab70454 (patch)
tree8919dc1e5294f4898e7b4d623818eefbf1519cd7 /source/blender/editors/sculpt_paint
parent9cf6e305a90581442d374860d3e4f278624d033c (diff)
remove redundant includes from cmake and scons.
Diffstat (limited to 'source/blender/editors/sculpt_paint')
-rw-r--r--source/blender/editors/sculpt_paint/paint_cursor.c1
-rw-r--r--source/blender/editors/sculpt_paint/paint_hide.c2
-rw-r--r--source/blender/editors/sculpt_paint/paint_mask.c2
-rw-r--r--source/blender/editors/sculpt_paint/paint_ops.c1
-rw-r--r--source/blender/editors/sculpt_paint/sculpt.c1
5 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_cursor.c b/source/blender/editors/sculpt_paint/paint_cursor.c
index 79b8cd5e695..639f2e8d506 100644
--- a/source/blender/editors/sculpt_paint/paint_cursor.c
+++ b/source/blender/editors/sculpt_paint/paint_cursor.c
@@ -35,6 +35,7 @@
#include "BLI_utildefines.h"
#include "DNA_brush_types.h"
+#include "DNA_customdata_types.h"
#include "DNA_color_types.h"
#include "DNA_object_types.h"
#include "DNA_scene_types.h"
diff --git a/source/blender/editors/sculpt_paint/paint_hide.c b/source/blender/editors/sculpt_paint/paint_hide.c
index 14eb358f20f..e0d578ec210 100644
--- a/source/blender/editors/sculpt_paint/paint_hide.c
+++ b/source/blender/editors/sculpt_paint/paint_hide.c
@@ -64,6 +64,8 @@
#include "RNA_access.h"
#include "RNA_define.h"
+#include "bmesh.h"
+
#include "paint_intern.h"
#include "sculpt_intern.h" /* for undo push */
diff --git a/source/blender/editors/sculpt_paint/paint_mask.c b/source/blender/editors/sculpt_paint/paint_mask.c
index d42a7778a58..8767b080355 100644
--- a/source/blender/editors/sculpt_paint/paint_mask.c
+++ b/source/blender/editors/sculpt_paint/paint_mask.c
@@ -54,6 +54,8 @@
#include "ED_screen.h"
#include "ED_sculpt.h"
+#include "bmesh.h"
+
#include "paint_intern.h"
#include "sculpt_intern.h" /* for undo push */
diff --git a/source/blender/editors/sculpt_paint/paint_ops.c b/source/blender/editors/sculpt_paint/paint_ops.c
index badd49cb8fb..df1978c49f6 100644
--- a/source/blender/editors/sculpt_paint/paint_ops.c
+++ b/source/blender/editors/sculpt_paint/paint_ops.c
@@ -30,6 +30,7 @@
#include "BLI_utildefines.h"
#include "BLI_math_vector.h"
+#include "DNA_customdata_types.h"
#include "DNA_object_types.h"
#include "DNA_scene_types.h"
#include "DNA_brush_types.h"
diff --git a/source/blender/editors/sculpt_paint/sculpt.c b/source/blender/editors/sculpt_paint/sculpt.c
index 053ace4e59d..5647a8562c7 100644
--- a/source/blender/editors/sculpt_paint/sculpt.c
+++ b/source/blender/editors/sculpt_paint/sculpt.c
@@ -44,6 +44,7 @@
#include "BLF_translation.h"
+#include "DNA_customdata_types.h"
#include "DNA_mesh_types.h"
#include "DNA_meshdata_types.h"
#include "DNA_node_types.h"