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:
authorDaniel Dunbar <daniel@zuster.org>2005-07-14 22:14:19 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-07-14 22:14:19 +0400
commit3929802335693ca648a769120e4113fbcb27c2aa (patch)
treed72180cde90e45bb9df89236b540baee841244a9 /source/blender/src/drawobject.c
parent6711eb9152c676e3c06f56ef410ede92ae806922 (diff)
- switch several instances of makeDispList to use more specific version
Diffstat (limited to 'source/blender/src/drawobject.c')
-rw-r--r--source/blender/src/drawobject.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/src/drawobject.c b/source/blender/src/drawobject.c
index 03f730b5016..97a4a9d5f59 100644
--- a/source/blender/src/drawobject.c
+++ b/source/blender/src/drawobject.c
@@ -2336,7 +2336,7 @@ static void drawDispList(Object *ob, int dt)
cu= ob->data;
lb= &cu->disp;
- if(lb->first==0) makeDispList(ob);
+ if(lb->first==0) makeDispListCurveTypes(ob);
if(solid) {
dl= lb->first;
@@ -2386,7 +2386,7 @@ static void drawDispList(Object *ob, int dt)
case OB_SURF:
lb= &((Curve *)ob->data)->disp;
- if(lb->first==0) makeDispList(ob);
+ if(lb->first==0) makeDispListCurveTypes(ob);
if(solid) {
dl= lb->first;
@@ -2413,7 +2413,7 @@ static void drawDispList(Object *ob, int dt)
if( is_basis_mball(ob)) {
lb= &ob->disp;
- if(lb->first==0) makeDispList(ob);
+ if(lb->first==0) makeDispListMBall(ob);
if(solid) {
@@ -3297,14 +3297,14 @@ static void draw_bounding_volume(Object *ob)
else if ELEM3(ob->type, OB_CURVE, OB_SURF, OB_FONT) {
bb= ( (Curve *)ob->data )->bb;
if(bb==0) {
- makeDispList(ob);
+ makeDispListCurveTypes(ob);
bb= ( (Curve *)ob->data )->bb;
}
}
else if(ob->type==OB_MBALL) {
bb= ob->bb;
if(bb==0) {
- makeDispList(ob);
+ makeDispListMBall(ob);
bb= ob->bb;
}
}