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:
authorCampbell Barton <ideasman42@gmail.com>2018-05-02 16:52:59 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-02 16:52:59 +0300
commit2450b70efacde0af75a8ab4125410779f01c5b4f (patch)
tree9084878c7d9a7ffc4ad7787d574a4912348763f9 /source/blender/makesdna/DNA_mesh_types.h
parent9e477bdf63dc21d3ae5845bed303abb5a2b958e6 (diff)
Mesh: add runtime customdata dirty flags
Diffstat (limited to 'source/blender/makesdna/DNA_mesh_types.h')
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index 91477578bf7..9e611762b37 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -69,6 +69,11 @@ typedef struct EditMeshData {
typedef struct MeshRuntime {
struct EditMeshData *edit_data;
void *batch_cache;
+
+ uint64_t cd_dirty_vert;
+ uint64_t cd_dirty_edge;
+ uint64_t cd_dirty_loop;
+ uint64_t cd_dirty_poly;
} MeshRuntime;
typedef struct Mesh {