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:
authorNicholas Bishop <nicholasbishop@gmail.com>2007-01-22 11:34:53 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2007-01-22 11:34:53 +0300
commitd58cc7b9e6b7de9da19f4ed2b2aae0b37084d8ca (patch)
treee0c93df8eb1f29f6e9dedc78c3b487bec4d4f93a /source/blender/makesdna/DNA_meshdata_types.h
parentcbbd736a9d1d73b68e2542d29d9dce852b006cfd (diff)
== Multires ==
Partial fix for bug #5771, Multires tool deletes crease flags on edges * Modified the edge flags code to support all of the edge flags (not just seams.) * Added a new array to the Multires struct to store creases. * For Mark Sharp, Clear Sharp, and Crease, displays an error if applied to a multires mesh not on level 1.
Diffstat (limited to 'source/blender/makesdna/DNA_meshdata_types.h')
-rw-r--r--source/blender/makesdna/DNA_meshdata_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h
index 465ed8710d3..6dceb73d253 100644
--- a/source/blender/makesdna/DNA_meshdata_types.h
+++ b/source/blender/makesdna/DNA_meshdata_types.h
@@ -129,6 +129,7 @@ typedef struct Multires {
CustomData vdata;
CustomData fdata;
short *edge_flags;
+ char *edge_creases;
} Multires;
typedef struct PartialVisibility {