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/blenkernel/BKE_pbvh.h
parent9cf6e305a90581442d374860d3e4f278624d033c (diff)
remove redundant includes from cmake and scons.
Diffstat (limited to 'source/blender/blenkernel/BKE_pbvh.h')
-rw-r--r--source/blender/blenkernel/BKE_pbvh.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/source/blender/blenkernel/BKE_pbvh.h b/source/blender/blenkernel/BKE_pbvh.h
index 4c811d55dbe..48c16f8db38 100644
--- a/source/blender/blenkernel/BKE_pbvh.h
+++ b/source/blender/blenkernel/BKE_pbvh.h
@@ -30,9 +30,6 @@
#include "BLI_ghash.h"
#include "BLI_utildefines.h"
-/* Needed for BMesh functions used in the PBVH iterator macro */
-#include "bmesh.h"
-
struct CCGElem;
struct CCGKey;
struct CustomData;
@@ -43,6 +40,8 @@ struct MFace;
struct MVert;
struct PBVH;
struct PBVHNode;
+struct BMesh;
+struct BMLog;
typedef struct PBVH PBVH;
typedef struct PBVHNode PBVHNode;
@@ -123,7 +122,7 @@ unsigned int **BKE_pbvh_grid_hidden(const PBVH *bvh);
void BKE_pbvh_get_grid_key(const PBVH *pbvh, struct CCGKey *key);
/* Only valid for type == PBVH_BMESH */
-BMesh *BKE_pbvh_get_bmesh(PBVH *pbvh);
+struct BMesh *BKE_pbvh_get_bmesh(PBVH *pbvh);
void BKE_pbvh_bmesh_detail_size_set(PBVH *pbvh, float detail_size);
typedef enum {
@@ -329,4 +328,3 @@ void BKE_pbvh_gather_proxies(PBVH *pbvh, PBVHNode ***nodes, int *totnode);
void pbvh_show_diffuse_color_set(PBVH *bvh, int show_diffuse_color);
#endif /* __BKE_PBVH_H__ */
-