[Bf-blender-cvs] [1ce566e8278] refactor-mesh-uv-map-generic: Remove CD_MASK_MLOOPUV completely

Hans Goudey noreply at git.blender.org
Mon Jan 2 00:37:32 CET 2023


Commit: 1ce566e827898f0d28ce14fab4dfeb01db752aee
Author: Hans Goudey
Date:   Sun Jan 1 18:36:32 2023 -0500
Branches: refactor-mesh-uv-map-generic
https://developer.blender.org/rB1ce566e827898f0d28ce14fab4dfeb01db752aee

Remove CD_MASK_MLOOPUV completely

Helps to avoid people reusing it by mistake in the future.
The masks are just runtime anyway, so there's no need to
keep them for backwards compatibility

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

M	source/blender/makesdna/DNA_customdata_types.h

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

diff --git a/source/blender/makesdna/DNA_customdata_types.h b/source/blender/makesdna/DNA_customdata_types.h
index c09f3f1797f..6983af5ab79 100644
--- a/source/blender/makesdna/DNA_customdata_types.h
+++ b/source/blender/makesdna/DNA_customdata_types.h
@@ -176,7 +176,6 @@ typedef enum eCustomDataType {
 #define CD_MASK_ORIGSPACE (1 << CD_ORIGSPACE)
 #define CD_MASK_ORCO (1 << CD_ORCO)
 // #define CD_MASK_MTEXPOLY (1 << CD_MTEXPOLY)  /* DEPRECATED */
-#define CD_MASK_MLOOPUV (1 << CD_MLOOPUV)
 #define CD_MASK_PROP_BYTE_COLOR (1 << CD_PROP_BYTE_COLOR)
 #define CD_MASK_TANGENT (1 << CD_TANGENT)
 #define CD_MASK_MDISPS (1 << CD_MDISPS)



More information about the Bf-blender-cvs mailing list