[Bf-blender-cvs] [f0ec2db3d60] greasepencil-object: GPencil: Cleanup unused flags

Antonio Vazquez noreply at git.blender.org
Thu Nov 21 22:50:15 CET 2019


Commit: f0ec2db3d6044b546501ac5a39c5a251ee212918
Author: Antonio Vazquez
Date:   Thu Nov 21 22:50:07 2019 +0100
Branches: greasepencil-object
https://developer.blender.org/rBf0ec2db3d6044b546501ac5a39c5a251ee212918

GPencil: Cleanup unused flags

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

M	source/blender/makesdna/DNA_scene_types.h

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

diff --git a/source/blender/makesdna/DNA_scene_types.h b/source/blender/makesdna/DNA_scene_types.h
index 101218a0f0f..b23f05a48cc 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -1082,15 +1082,10 @@ typedef struct GP_Sculpt_Settings {
 
 /* GP_Sculpt_Settings.flag */
 typedef enum eGP_Sculpt_SettingsFlag {
-  /* GPXX */
-  /* only affect selected points */
-  GP_SCULPT_SETT_FLAG_DEPRECATED = (1 << 0),
-  /* apply brush to thickness */
-  GP_SCULPT_SETT_FLAG_WEIGHT_MODE = (1 << 4),
   /* enable falloff for multiframe editing */
-  GP_SCULPT_SETT_FLAG_FRAME_FALLOFF = (1 << 5),
+  GP_SCULPT_SETT_FLAG_FRAME_FALLOFF = (1 << 0),
   /* apply primitive curve */
-  GP_SCULPT_SETT_FLAG_PRIMITIVE_CURVE = (1 << 7),
+  GP_SCULPT_SETT_FLAG_PRIMITIVE_CURVE = (1 << 1),
 } eGP_Sculpt_SettingsFlag;
 
 /* GP_Sculpt_Settings.gpencil_selectmode_sculpt */



More information about the Bf-blender-cvs mailing list