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 19:48:01 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-07-14 19:48:01 +0400
commitbefc2bbc41ee7c8396f9acb781977b1af4915626 (patch)
tree79b88a72113f8f75988896782b0d25502c88a369 /source/blender/src/editsima.c
parent1261dc7e4ede3169d2a959a10ee428e492eddfeb (diff)
- split makeDispList into makeDispList{Mesh,MBall,CurveTypes}, there is
still a makeDispList that dispatches to the appropriate one. makeDispList is on the way out and this makes it easier to track down exactly which places use makedispList and for what types of objects. - switch calls to makeDispList to appropriate more specific function (if the object type is known by caller). - added mesh_changed function that invalidates cached mesh data (but does not rebuild, mesh data gets rebuilt on access). Most old calls to makeDispListMesh use this instead now.
Diffstat (limited to 'source/blender/src/editsima.c')
-rw-r--r--source/blender/src/editsima.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editsima.c b/source/blender/src/editsima.c
index 8cb75c59050..96b9b1de3f7 100644
--- a/source/blender/src/editsima.c
+++ b/source/blender/src/editsima.c
@@ -761,7 +761,7 @@ void transform_tface_uv(int mode, int context) // 2 args, for callback
G.moving= 0;
prop_size*= 3;
- makeDispList(OBACT);
+ mesh_changed(OBACT);
allqueue(REDRAWVIEW3D, 0);
if(event!=ESCKEY && event!=RIGHTMOUSE)