[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52009] trunk/blender/source/blender/ blenlib/BLI_pbvh.h: Attempt to fix OSX compilation issue.

Sergey Sharybin sergey.vfx at gmail.com
Thu Nov 8 15:34:45 CET 2012


Revision: 52009
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=52009
Author:   nazgul
Date:     2012-11-08 14:34:42 +0000 (Thu, 08 Nov 2012)
Log Message:
-----------
Attempt to fix OSX compilation issue.

BLI_bitmap is not a sctruct, so that should be culptrit.

Modified Paths:
--------------
    trunk/blender/source/blender/blenlib/BLI_pbvh.h

Modified: trunk/blender/source/blender/blenlib/BLI_pbvh.h
===================================================================
--- trunk/blender/source/blender/blenlib/BLI_pbvh.h	2012-11-08 14:22:05 UTC (rev 52008)
+++ trunk/blender/source/blender/blenlib/BLI_pbvh.h	2012-11-08 14:34:42 UTC (rev 52009)
@@ -28,7 +28,6 @@
 
 #include "BLI_bitmap.h"
 
-struct BLI_bitmap;
 struct CCGElem;
 struct CCGKey;
 struct CustomData;
@@ -155,7 +154,7 @@
 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];




More information about the Bf-blender-cvs mailing list