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:
authorDaniel Dunbar <daniel@zuster.org>2004-03-14 19:59:48 +0300
committerDaniel Dunbar <daniel@zuster.org>2004-03-14 19:59:48 +0300
commit16e90d56d261f4f93b46d2eb494cb0d2b1187d71 (patch)
tree7a89739f5feadeaad42647df422c78bbb7f69ea7 /source/blender/makesdna
parent59b5ac844968920ea30baffb0ef7ff307524ceb2 (diff)
- replaced AUTOSPACE define with {ME_,CU_,MB_}AUTOSPACE,
different objects shouldn't share flags this way (still sharing of other mesh flags in renderer... ickity pickity, but I'm not fixing now) - removed some unnecessary uses of DNA_mesh_types.h
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_curve_types.h3
-rw-r--r--source/blender/makesdna/DNA_lattice_types.h4
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h6
-rw-r--r--source/blender/makesdna/DNA_meta_types.h3
4 files changed, 7 insertions, 9 deletions
diff --git a/source/blender/makesdna/DNA_curve_types.h b/source/blender/makesdna/DNA_curve_types.h
index b7bc03364ba..7d0f606b811 100644
--- a/source/blender/makesdna/DNA_curve_types.h
+++ b/source/blender/makesdna/DNA_curve_types.h
@@ -162,6 +162,9 @@ typedef struct IpoCurve {
/* **************** CURVE ********************* */
+/* texflag */
+#define CU_AUTOSPACE 1
+
/* flag */
#define CU_3D 1
#define CU_FRONT 2
diff --git a/source/blender/makesdna/DNA_lattice_types.h b/source/blender/makesdna/DNA_lattice_types.h
index 43649467b96..fc71982fb0e 100644
--- a/source/blender/makesdna/DNA_lattice_types.h
+++ b/source/blender/makesdna/DNA_lattice_types.h
@@ -1,8 +1,4 @@
/**
- * blenlib/DNA_mesh_types.h (mar-2001 nzc)
- *
- * Mesh stuff.
- *
* $Id$
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index 6a4f5260b58..55ab0f14cdd 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -1,8 +1,4 @@
/**
- * blenlib/DNA_mesh_types.h (mar-2001 nzc)
- *
- * Mesh stuff.
- *
* $Id$
*
* ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
@@ -154,7 +150,7 @@ typedef struct Mesh {
/* **************** MESH ********************* */
/* texflag */
-#define AUTOSPACE 1
+#define ME_AUTOSPACE 1
/* me->flag */
#define ME_ISDONE 1
diff --git a/source/blender/makesdna/DNA_meta_types.h b/source/blender/makesdna/DNA_meta_types.h
index 6b1c7e97601..9501aac82f6 100644
--- a/source/blender/makesdna/DNA_meta_types.h
+++ b/source/blender/makesdna/DNA_meta_types.h
@@ -82,6 +82,9 @@ typedef struct MetaBall {
#define MB_MAXELEM 1024
+/* texflag */
+#define MB_AUTOSPACE 1
+
/* mb->flag */
#define MB_UPDATE_ALWAYS 0
#define MB_UPDATE_HALFRES 1