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:
Diffstat (limited to 'source/blender/makesdna/DNA_object_types.h')
-rw-r--r--source/blender/makesdna/DNA_object_types.h23
1 files changed, 5 insertions, 18 deletions
diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h
index 8d861647bd2..dd31e85647d 100644
--- a/source/blender/makesdna/DNA_object_types.h
+++ b/source/blender/makesdna/DNA_object_types.h
@@ -172,12 +172,6 @@ typedef struct Object_Runtime {
struct GeometrySet *geometry_set_eval;
/**
- * A GHash that contains geometry sets for intermediate stages of evaluation. The keys are just a
- * hash and are not owned by the map. The geometry sets are owned.
- */
- void *geometry_set_previews;
-
- /**
* Mesh structure created during object evaluation.
* It has deformation only modifiers applied on it.
*/
@@ -278,8 +272,7 @@ typedef struct Object {
ListBase constraintChannels DNA_DEPRECATED; /* XXX deprecated... old animation system */
ListBase effect DNA_DEPRECATED; /* XXX deprecated... keep for readfile */
- /** List of bDeformGroup (vertex groups) names and flag only. */
- ListBase defbase;
+ ListBase defbase DNA_DEPRECATED; /* Only for versioning, moved to object data. */
/** List of ModifierData structures. */
ListBase modifiers;
/** List of GpencilModifierData structures. */
@@ -335,12 +328,6 @@ typedef struct Object {
*/
float imat[4][4];
- /* Previously 'imat' was used at render time, but as other places use it too
- * the interactive ui of 2.5 creates problems. So now only 'imat_ren' should
- * be used when ever the inverse of ob->obmat * re->viewmat is needed! - jahka
- */
- float imat_ren[4][4];
-
/** Copy of Base's layer in the scene. */
unsigned int lay DNA_DEPRECATED;
@@ -386,9 +373,9 @@ typedef struct Object {
/** Custom index, for renderpasses. */
short index;
- /** Current deformation group, note: index starts at 1. */
- unsigned short actdef;
- /** Current face map, note: index starts at 1. */
+ /** Current deformation group, NOTE: index starts at 1. */
+ unsigned short actdef DNA_DEPRECATED;
+ /** Current face map, NOTE: index starts at 1. */
unsigned short actfmap;
char _pad2[2];
/** Object color (in most cases the material color is used for drawing). */
@@ -711,7 +698,7 @@ enum {
/* OB_ADS_SHOWCONS = 1 << 12, */ /* UNUSED */
/* object's material channels */
/* OB_ADS_SHOWMATS = 1 << 13, */ /* UNUSED */
- /* object's marticle channels */
+ /* object's particle channels */
/* OB_ADS_SHOWPARTS = 1 << 14, */ /* UNUSED */
};