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:
authorAntony Riakiotakis <kalast@gmail.com>2014-04-10 23:31:39 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-04-10 23:31:39 +0400
commit6292b60a3f5b1c224ec78301c7830045560fa3b4 (patch)
tree389d6deeb90764c9c83d940ddd74066d627b215a /source/blender/blenkernel/BKE_pbvh.h
parent7bf62f0c602a59cc661c04243cca6ea9b9e3cfed (diff)
Dyntopo: Minor display optimization.
While hiding, flush the hidden flags to the faces. This avoids iterating through all the loops while updating the GPU buffers.
Diffstat (limited to 'source/blender/blenkernel/BKE_pbvh.h')
-rw-r--r--source/blender/blenkernel/BKE_pbvh.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_pbvh.h b/source/blender/blenkernel/BKE_pbvh.h
index 73ca60d40b9..79a41f06c3a 100644
--- a/source/blender/blenkernel/BKE_pbvh.h
+++ b/source/blender/blenkernel/BKE_pbvh.h
@@ -185,6 +185,7 @@ bool BKE_pbvh_node_planes_exclude_AABB(PBVHNode *node, void *data);
struct GSet *BKE_pbvh_bmesh_node_unique_verts(PBVHNode *node);
struct GSet *BKE_pbvh_bmesh_node_other_verts(PBVHNode *node);
+struct GSet *BKE_pbvh_bmesh_node_faces(PBVHNode *node);
void BKE_pbvh_bmesh_node_save_orig(PBVHNode *node);
void BKE_pbvh_bmesh_after_stroke(PBVH *bvh);