[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [15819] branches/soc-2008-nicholasbishop/ source/blender/blenkernel/intern/customdata.c: Removed mdisps from the default customdata of derivedmeshes since it' s no longer needed.

Nicholas Bishop nicholasbishop at gmail.com
Sun Jul 27 22:01:32 CEST 2008


Revision: 15819
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=15819
Author:   nicholasbishop
Date:     2008-07-27 22:01:32 +0200 (Sun, 27 Jul 2008)

Log Message:
-----------
Removed mdisps from the default customdata of derivedmeshes since it's no longer needed. Fixes putting, e.g., a smooth modifier after multires.

Modified Paths:
--------------
    branches/soc-2008-nicholasbishop/source/blender/blenkernel/intern/customdata.c

Modified: branches/soc-2008-nicholasbishop/source/blender/blenkernel/intern/customdata.c
===================================================================
--- branches/soc-2008-nicholasbishop/source/blender/blenkernel/intern/customdata.c	2008-07-27 19:53:57 UTC (rev 15818)
+++ branches/soc-2008-nicholasbishop/source/blender/blenkernel/intern/customdata.c	2008-07-27 20:01:32 UTC (rev 15819)
@@ -588,7 +588,7 @@
 const CustomDataMask CD_MASK_DERIVEDMESH =
 	CD_MASK_MSTICKY | CD_MASK_MDEFORMVERT | CD_MASK_MTFACE |
 	CD_MASK_MCOL | CD_MASK_ORIGINDEX | CD_MASK_PROP_FLT | CD_MASK_PROP_INT |
-	CD_MASK_PROP_STR | CD_MASK_ORIGSPACE | CD_MASK_ORCO | CD_MASK_MDISPS;
+	CD_MASK_PROP_STR | CD_MASK_ORIGSPACE | CD_MASK_ORCO;
 const CustomDataMask CD_MASK_BMESH = 
 	CD_MASK_MSTICKY | CD_MASK_MDEFORMVERT | CD_MASK_PROP_FLT | CD_MASK_PROP_INT | CD_MASK_PROP_STR;
 const CustomDataMask CD_MASK_FACECORNERS =





More information about the Bf-blender-cvs mailing list