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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-05-07 15:33:20 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-05-07 15:37:56 +0300
commit580d10e6b670e168959441eebea93fed406625f1 (patch)
treebb13e99d4ec70f2692025778da21401a99e2d83d /source/blender/makesdna/DNA_mesh_types.h
parent77f2f23a7ebceda3187a2f5ceab79a46a9537574 (diff)
Change mesh dirty runtime flags to signed int64_t.
Because CD_MASK_XXX are signed longlong, so when assigning to unsigned longlong you get grumpy compiler errors!
Diffstat (limited to 'source/blender/makesdna/DNA_mesh_types.h')
-rw-r--r--source/blender/makesdna/DNA_mesh_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index 9e611762b37..d951f67a7c4 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -70,10 +70,10 @@ 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;
+ int64_t cd_dirty_vert;
+ int64_t cd_dirty_edge;
+ int64_t cd_dirty_loop;
+ int64_t cd_dirty_poly;
} MeshRuntime;
typedef struct Mesh {