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>2021-07-05 05:49:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-07-05 08:54:57 +0300
commit2929cfe5ded3c127d6d9d5996cd591878bb5cb58 (patch)
tree103e939a51154cdd77b867b00e710e9e1a56ae0e
parentf0f7282d9d9bb5deb6216ac95e280b24f89eb239 (diff)
Cleanup: remove unused defines
-rw-r--r--source/blender/editors/include/UI_interface.h6
-rw-r--r--source/blender/makesdna/DNA_constraint_types.h7
2 files changed, 0 insertions, 13 deletions
diff --git a/source/blender/editors/include/UI_interface.h b/source/blender/editors/include/UI_interface.h
index 0ba214e7bf3..7a8c14d0a35 100644
--- a/source/blender/editors/include/UI_interface.h
+++ b/source/blender/editors/include/UI_interface.h
@@ -129,12 +129,6 @@ enum {
UI_DIR_ALL = UI_DIR_UP | UI_DIR_DOWN | UI_DIR_LEFT | UI_DIR_RIGHT,
};
-#if 0
-/* uiBlock->autofill (not yet used) */
-# define UI_BLOCK_COLLUMNS 1
-# define UI_BLOCK_ROWS 2
-#endif
-
/** #uiBlock.flag (controls) */
enum {
UI_BLOCK_LOOP = 1 << 0,
diff --git a/source/blender/makesdna/DNA_constraint_types.h b/source/blender/makesdna/DNA_constraint_types.h
index 6531933af23..34f50b23c77 100644
--- a/source/blender/makesdna/DNA_constraint_types.h
+++ b/source/blender/makesdna/DNA_constraint_types.h
@@ -1196,13 +1196,6 @@ typedef enum eStretchTo_Flags {
STRETCHTOCON_USE_BULGE_MAX = (1 << 1),
} eStretchTo_Flags;
-/* important: these defines need to match up with PHY_DynamicTypes headerfile */
-#define CONSTRAINT_RB_BALL 1
-#define CONSTRAINT_RB_HINGE 2
-#define CONSTRAINT_RB_CONETWIST 4
-#define CONSTRAINT_RB_VEHICLE 11
-#define CONSTRAINT_RB_GENERIC6DOF 12
-
#ifdef __cplusplus
}
#endif