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:
authorCampbell Barton <ideasman42@gmail.com>2012-04-23 04:58:17 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-23 04:58:17 +0400
commite26ef899c303919098faa60b1a5baaf6e78276f6 (patch)
tree9686a452a9b665c6cb37689a15e89e8c78ebca47 /source/blender/makesdna/DNA_meshdata_types.h
parenta1b9608ddd555cc3c89c72a5cacd4042e91781f0 (diff)
clear the FGON edge flag when updating old meshes to polygons. (we may wan't to reuse the flag later)
Diffstat (limited to 'source/blender/makesdna/DNA_meshdata_types.h')
-rw-r--r--source/blender/makesdna/DNA_meshdata_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h
index 9891469c29b..89ed3ba055f 100644
--- a/source/blender/makesdna/DNA_meshdata_types.h
+++ b/source/blender/makesdna/DNA_meshdata_types.h
@@ -257,7 +257,7 @@ typedef struct MRecast {
/* medge->flag (1=SELECT)*/
#define ME_EDGEDRAW (1<<1)
#define ME_SEAM (1<<2)
-/* #define ME_FGON (1<<3) */ /* no longer used (now we have ngons) */
+#define ME_FGON (1<<3) /* no longer used (now we have ngons), only defined so we can clear it */
/* reserve 16 for ME_HIDE */
#define ME_EDGERENDER (1<<5)
#define ME_LOOSEEDGE (1<<7)