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-26 16:13:43 +0300
commitabcdb0f7e4855342669845121d8b35530c6c6e1d (patch)
treef5bf4a41e9e88efc8f860d927afa64c57cda8766 /source/blender/makesdna/DNA_object_types.h
parent4dc7114e4383c390b0a24a534f62afbb2b5bf42d (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 dfbc08ae675..5b81d379943 100644
--- a/source/blender/makesdna/DNA_object_types.h
+++ b/source/blender/makesdna/DNA_object_types.h
@@ -342,7 +342,7 @@ typedef struct DupliObjectData {
*/
struct Object *ob;
struct BoundBox bb;
- struct DerivedMesh *cache_dm;
+ struct DerivedMesh *dm;
} DupliObjectData;
typedef struct DupliCache {