Cleanup: use '_Runtime' suffix

Allows for more easily finding runtime versions of any struct.
This commit is contained in:
Campbell Barton 2018-05-18 08:02:32 +02:00
parent 8b9db543fd
commit f7e7769260
1 changed files with 3 additions and 3 deletions

View File

@ -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 */