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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-12-11 17:16:17 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-12-11 17:16:17 +0300
commitc6ffe237629b771f86eb92c755b0897e3a2233e0 (patch)
tree19d6a7a18e49e438262ac686893e20c3871ac222 /source/blender/blenlib/BLI_pbvh.h
parent89b6d94e387d4b127dfa7095146b641053a01617 (diff)
Sculpt Branch:
* Added detection if VBO extension is supported. * Redraw other 3d views after sculpting. * Fix brush sometimes punching through mesh with very small polygons, added an extra epsilon to the ray-triangle intersection.
Diffstat (limited to 'source/blender/blenlib/BLI_pbvh.h')
-rw-r--r--source/blender/blenlib/BLI_pbvh.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/BLI_pbvh.h b/source/blender/blenlib/BLI_pbvh.h
index e1e733c91df..12c13de183c 100644
--- a/source/blender/blenlib/BLI_pbvh.h
+++ b/source/blender/blenlib/BLI_pbvh.h
@@ -88,9 +88,9 @@ typedef enum {
PBVH_UpdateNormals = 2,
PBVH_UpdateBB = 4,
- PBVH_UpdateOriginalBB = 4,
- PBVH_UpdateDrawBuffers = 8,
- PBVH_UpdateRedraw = 16
+ PBVH_UpdateOriginalBB = 8,
+ PBVH_UpdateDrawBuffers = 16,
+ PBVH_UpdateRedraw = 32
} PBVHNodeFlags;
void BLI_pbvh_node_mark_update(PBVHNode *node);