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:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-11-08 18:34:42 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-11-08 18:34:42 +0400
commit7681488f974a52d74d37c2a173bd2c6a3cdfe1a5 (patch)
tree30644bb339c4d1b3096e3d49a37e76e72ad2c8f8 /source/blender/blenlib
parentff1e337bb47ce801e99afeec3d5ccdab5a5a3212 (diff)
Attempt to fix OSX compilation issue.
BLI_bitmap is not a sctruct, so that should be culptrit.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_pbvh.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_pbvh.h b/source/blender/blenlib/BLI_pbvh.h
index 3445522eb7c..59ecdb359c9 100644
--- a/source/blender/blenlib/BLI_pbvh.h
+++ b/source/blender/blenlib/BLI_pbvh.h
@@ -28,7 +28,6 @@
#include "BLI_bitmap.h"
-struct BLI_bitmap;
struct CCGElem;
struct CCGKey;
struct CustomData;
@@ -155,7 +154,7 @@ void BLI_pbvh_redraw_BB(PBVH * bvh, float bb_min[3], float bb_max[3]);
void BLI_pbvh_get_grid_updates(PBVH *bvh, int clear, void ***gridfaces, int *totface);
void BLI_pbvh_grids_update(PBVH *bvh, struct CCGElem **grid_elems,
struct DMGridAdjacency *gridadj, void **gridfaces,
- struct DMFlagMat *flagmats, struct BLI_bitmap *grid_hidden);
+ struct DMFlagMat *flagmats, unsigned int **grid_hidden);
/* vertex deformer */
float (*BLI_pbvh_get_vertCos(struct PBVH *pbvh))[3];