From 291d2a2222fc98fdf18b5c250e289a2213acc4d8 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Fri, 24 Dec 2021 11:00:01 -0600 Subject: Cleanup: Remove misleading comments Most of these custom data layers weren't BMesh only, and the one that actually looks to be BMesh only has `BM` in its name. --- source/blender/makesdna/DNA_customdata_types.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'source/blender/makesdna') diff --git a/source/blender/makesdna/DNA_customdata_types.h b/source/blender/makesdna/DNA_customdata_types.h index 36bdd4915ff..787dbc23515 100644 --- a/source/blender/makesdna/DNA_customdata_types.h +++ b/source/blender/makesdna/DNA_customdata_types.h @@ -134,7 +134,6 @@ typedef enum CustomDataType { CD_CLOTH_ORCO = 23, /* CD_RECAST = 24, */ /* UNUSED */ - /* BMESH ONLY START */ CD_MPOLY = 25, CD_MLOOP = 26, CD_SHAPE_KEYINDEX = 27, @@ -144,7 +143,6 @@ typedef enum CustomDataType { CD_ORIGSPACE_MLOOP = 31, CD_PREVIEW_MLOOPCOL = 32, CD_BM_ELEM_PYPTR = 33, - /* BMESH ONLY END */ CD_PAINT_MASK = 34, CD_GRID_PAINT_MASK = 35, @@ -164,7 +162,6 @@ typedef enum CustomDataType { CD_PROP_COLOR = 47, CD_PROP_FLOAT3 = 48, CD_PROP_FLOAT2 = 49, - CD_PROP_BOOL = 50, CD_HAIRLENGTH = 51, @@ -197,7 +194,6 @@ typedef enum CustomDataType { #define CD_MASK_CLOTH_ORCO (1 << CD_CLOTH_ORCO) // #define CD_MASK_RECAST (1 << CD_RECAST) /* DEPRECATED */ -/* BMESH ONLY START */ #define CD_MASK_MPOLY (1 << CD_MPOLY) #define CD_MASK_MLOOP (1 << CD_MLOOP) #define CD_MASK_SHAPE_KEYINDEX (1 << CD_SHAPE_KEYINDEX) @@ -207,7 +203,6 @@ typedef enum CustomDataType { #define CD_MASK_ORIGSPACE_MLOOP (1LL << CD_ORIGSPACE_MLOOP) #define CD_MASK_PREVIEW_MLOOPCOL (1LL << CD_PREVIEW_MLOOPCOL) #define CD_MASK_BM_ELEM_PYPTR (1LL << CD_BM_ELEM_PYPTR) -/* BMESH ONLY END */ #define CD_MASK_PAINT_MASK (1LL << CD_PAINT_MASK) #define CD_MASK_GRID_PAINT_MASK (1LL << CD_GRID_PAINT_MASK) -- cgit v1.2.3