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:
authorCampbell Barton <ideasman42@gmail.com>2011-02-21 04:02:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-21 04:02:30 +0300
commit7809d7d0c8cde22ec39e0b00e20742393a18c019 (patch)
tree67a6b09d144b663ea1227d6ff7f7956fe1cdd1f5 /source/blender/blenlib
parent958b5c1d8da55bba52317bb0143b159629548829 (diff)
fix [#26152] Blender File for Image too Small
disallow 0% rendersize. also mark new cmake vars as advanced: RPMBUILD, X11_XF86keysym_INCLUDE_PATH
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/pbvh.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenlib/intern/pbvh.c b/source/blender/blenlib/intern/pbvh.c
index 880664fd55d..f0349f3be31 100644
--- a/source/blender/blenlib/intern/pbvh.c
+++ b/source/blender/blenlib/intern/pbvh.c
@@ -59,10 +59,12 @@ static void BLI_bitmap_set(BLI_bitmap b, int index)
b[index >> 3] |= (1 << (index & 7));
}
+#if 0 /* UNUSED */
static void BLI_bitmap_clear(BLI_bitmap b, int index)
{
b[index >> 3] &= ~(1 << (index & 7));
}
+#endif
/* Axis-aligned bounding box */
typedef struct {