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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-05-30 12:49:45 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-05-30 12:49:45 +0300
commitedc1e65809d1c622a15dbe60330947149db4776f (patch)
treeaa17ba7f970f25d1ebf4378a85993dae90af39f3 /source/blender/makesdna/DNA_object_types.h
parent6afa0a7a50fdd579c4545a8b7718e79d4a6a78be (diff)
Add deformed evaluated mesh to object
This is a first step to have correspondence of legacy derivedDeform within a new formulation. Only base ground for now to support file reading, copy-on-write remapping and such.
Diffstat (limited to 'source/blender/makesdna/DNA_object_types.h')
-rw-r--r--source/blender/makesdna/DNA_object_types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h
index e525a4fae0c..daff6ab0baa 100644
--- a/source/blender/makesdna/DNA_object_types.h
+++ b/source/blender/makesdna/DNA_object_types.h
@@ -149,6 +149,10 @@ typedef struct Object_Runtime {
* It has all modifiers applied.
*/
struct Mesh *mesh_eval;
+ /* Mesh structure created during object evaluation.
+ * It has deforemation only modifiers applied on it.
+ */
+ struct Mesh *mesh_deform_eval;
} Object_Runtime;
typedef struct Object {