[Bf-blender-cvs] [39bad22008f] master: Cleanup: Add comments about deprecated flags

Hans Goudey noreply at git.blender.org
Sun Aug 14 15:19:48 CEST 2022


Commit: 39bad22008fb2655d3edf1a301bf16b8011f00e8
Author: Hans Goudey
Date:   Sun Aug 14 09:19:40 2022 -0400
Branches: master
https://developer.blender.org/rB39bad22008fb2655d3edf1a301bf16b8011f00e8

Cleanup: Add comments about deprecated flags

===================================================================

M	source/blender/makesdna/DNA_meshdata_types.h

===================================================================

diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h
index abef90495c5..c62907e26ed 100644
--- a/source/blender/makesdna/DNA_meshdata_types.h
+++ b/source/blender/makesdna/DNA_meshdata_types.h
@@ -34,6 +34,7 @@ typedef struct MVert {
 #ifdef DNA_DEPRECATED_ALLOW
 enum {
   /*  SELECT = (1 << 0), */
+  /** Deprecated hide status. Now stored in ".hide_vert" attribute. */
   ME_HIDE = (1 << 4),
 };
 #endif
@@ -55,6 +56,7 @@ enum {
   /*  SELECT = (1 << 0), */
   ME_EDGEDRAW = (1 << 1),
   ME_SEAM = (1 << 2),
+  /** Deprecated hide status. Now stored in ".hide_edge" attribute. */
   /*  ME_HIDE = (1 << 4), */
   ME_EDGERENDER = (1 << 5),
   ME_LOOSEEDGE = (1 << 7),
@@ -80,6 +82,7 @@ typedef struct MPoly {
 enum {
   ME_SMOOTH = (1 << 0),
   ME_FACE_SEL = (1 << 1),
+  /** Deprecated hide status. Now stored in ".hide_poly" attribute. */
   /* ME_HIDE = (1 << 4), */
 };



More information about the Bf-blender-cvs mailing list