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-18 09:02:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-18 09:02:32 +0300
commitf7e77692604a1fb92086b67b848e4d3ca219e6ae (patch)
tree082db43e21c18461f3bc0cb533a3ab958d5113e4 /source/blender/makesdna/DNA_mesh_types.h
parent8b9db543fd9b928867889d19eea4d9b038b316d5 (diff)
Cleanup: use '_Runtime' suffix
Allows for more easily finding runtime versions of any struct.
Diffstat (limited to 'source/blender/makesdna/DNA_mesh_types.h')
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index 4e347cc4363..48c39d439dd 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -80,7 +80,7 @@ struct MLoopTri_Store {
};
/* not saved in file! */
-typedef struct MeshRuntime {
+typedef struct Mesh_Runtime {
struct EditMeshData *edit_data;
void *batch_cache;
@@ -96,7 +96,7 @@ typedef struct MeshRuntime {
int deformed_only; /* set by modifier stack if only deformed from original */
char padding[4];
-} MeshRuntime;
+} Mesh_Runtime;
typedef struct Mesh {
ID id;
@@ -173,7 +173,7 @@ typedef struct Mesh {
struct Multires *mr DNA_DEPRECATED; /* deprecated multiresolution modeling data, only keep for loading old files */
- MeshRuntime runtime;
+ Mesh_Runtime runtime;
} Mesh;
/* deprecated by MTFace, only here for file reading */