Fix T47683: broken BBox logic when drawing duplis.

Once a dupli had a valid bbox, that bbox would be used for all following objects
without bbox, instead of skipping clipping check.

Issue unveiled by rB3fa0a1a5bc0ff2, but not related at all (in fact, bug was present before that commit).
This commit is contained in:
Bastien Montagne 2016-03-04 12:32:35 +01:00
parent f2c40ca9f0
commit d8b8a6e275
Notes: blender-bot 2023-02-14 09:09:43 +01:00
Referenced by issue #47683, Regression displaying bone-children in dupli-groups
1 changed files with 2 additions and 2 deletions

View File

@ -2063,7 +2063,6 @@ static void draw_dupli_objects_color(
short transflag;
bool use_displist = false; /* -1 is initialize */
char dt;
bool testbb = false;
short dtx;
DupliApplyData *apply_data;
@ -2087,10 +2086,11 @@ static void draw_dupli_objects_color(
if (dob) dob_next = dupli_step(dob->next);
for (; dob; dob_prev = dob, dob = dob_next, dob_next = dob_next ? dupli_step(dob_next->next) : NULL) {
bool testbb = false;
tbase.object = dob->ob;
/* Make sure lod is updated from dupli's position */
savedlod = dob->ob->currentlod;
#ifdef WITH_GAMEENGINE