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:
Diffstat (limited to 'source/blender/blenkernel/intern/pbvh_intern.h')
-rw-r--r--source/blender/blenkernel/intern/pbvh_intern.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/pbvh_intern.h b/source/blender/blenkernel/intern/pbvh_intern.h
index 368a9ffa1ea..4b3b0e9b213 100644
--- a/source/blender/blenkernel/intern/pbvh_intern.h
+++ b/source/blender/blenkernel/intern/pbvh_intern.h
@@ -15,7 +15,6 @@ extern "C" {
struct MLoop;
struct MLoopTri;
struct MPoly;
-struct MVert;
/* Axis-aligned bounding box */
typedef struct {
@@ -56,7 +55,7 @@ struct PBVHNode {
int *prim_indices;
unsigned int totprim; /* Number of primitives inside prim_indices. */
- /* Array of indices into the mesh's MVert array. Contains the
+ /* Array of indices into the mesh's vertex array. Contains the
* indices of all vertices used by faces that are within this
* node's bounding box.
*
@@ -157,7 +156,7 @@ struct PBVH {
/* NOTE: Normals are not `const` because they can be updated for drawing by sculpt code. */
float (*vert_normals)[3];
bool *hide_vert;
- struct MVert *verts;
+ float (*mesh_positions)[3];
const struct MPoly *mpoly;
bool *hide_poly;
/** Material indices. Only valid for polygon meshes. */