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>2006-12-31 13:36:48 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2006-12-31 13:36:48 +0300
commitc101ee5d22e38f505535b12484e8c5e8f22e4bd2 (patch)
tree55bea19c9522e6e686c1a833fa61adf7e10ba97d /source/blender/makesdna/DNA_meshdata_types.h
parent75735b839bceb2a93404f5a236cdc9bcabcf062f (diff)
Added propagation of the edge seam flag for multires. Note that the flag is only stored for level 1.
Diffstat (limited to 'source/blender/makesdna/DNA_meshdata_types.h')
-rw-r--r--source/blender/makesdna/DNA_meshdata_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h
index 4588a9b9351..2e74937199f 100644
--- a/source/blender/makesdna/DNA_meshdata_types.h
+++ b/source/blender/makesdna/DNA_meshdata_types.h
@@ -129,9 +129,9 @@ typedef struct Multires {
unsigned char level_count, current, newlvl, edgelvl, pinlvl, renderlvl;
unsigned char use_col, use_tex;
- /* Vertex groups are stored only for the level 1 mesh, for all other
- * levels it's calculated when multires_level_to_mesh() is called */
+ /* Special level 1 data that cannot be modified from other levels */
struct CustomData vdata;
+ short *edge_flags;
} Multires;
typedef struct PartialVisibility {