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:
authorLukas Tönne <lukas.toenne@gmail.com>2015-03-24 17:28:12 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-03-24 17:28:12 +0300
commit4be32cf00742bb461ebc26ef0533c9e0059c2252 (patch)
treec34d09f963953491b94c9ff08e149a1d44cc37e0 /source/blender/makesdna/DNA_object_types.h
parentbf047cb850a4dff1ea93ccd3d41e31e84e5b12ed (diff)
Renamed the cache_dm to simply dm.
The fact that this is used for caching is only apparent on the higher levels of the Object struct.
Diffstat (limited to 'source/blender/makesdna/DNA_object_types.h')
-rw-r--r--source/blender/makesdna/DNA_object_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h
index 1aafeb0c713..06da7fcf749 100644
--- a/source/blender/makesdna/DNA_object_types.h
+++ b/source/blender/makesdna/DNA_object_types.h
@@ -353,7 +353,7 @@ typedef struct DupliObjectData {
*/
struct Object *ob;
struct BoundBox bb;
- struct DerivedMesh *cache_dm;
+ struct DerivedMesh *dm;
} DupliObjectData;
typedef struct DupliCache {