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:
authorPhilipp Oeser <info@graphics-engineer.com>2018-11-19 17:24:32 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2018-11-21 18:34:32 +0300
commitcec83e92e6160adf1e39e0173c77743cb1ff1be7 (patch)
tree1ff09e025d910d63af6f0716cc26e4f015e56d29 /source/blender/editors/space_info
parentd3e686d61eb93aed5487c4037d7675cf811039a1 (diff)
Fix T57884: Triangle count is incorrect when above around 2 billion
Maniphest Tasks: T57884 Differential Revision: https://developer.blender.org/D3962
Diffstat (limited to 'source/blender/editors/space_info')
-rw-r--r--source/blender/editors/space_info/info_stats.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/editors/space_info/info_stats.c b/source/blender/editors/space_info/info_stats.c
index 1848a22a619..c842ac07eef 100644
--- a/source/blender/editors/space_info/info_stats.c
+++ b/source/blender/editors/space_info/info_stats.c
@@ -70,14 +70,14 @@
#define MAX_INFO_NUM_LEN 16
typedef struct SceneStats {
- int totvert, totvertsel;
- int totedge, totedgesel;
- int totface, totfacesel;
- int totbone, totbonesel;
- int totobj, totobjsel;
- int totlamp, totlampsel;
- int tottri;
- int totgplayer, totgpframe, totgpstroke, totgppoint;
+ uint64_t totvert, totvertsel;
+ uint64_t totedge, totedgesel;
+ uint64_t totface, totfacesel;
+ uint64_t totbone, totbonesel;
+ uint64_t totobj, totobjsel;
+ uint64_t totlamp, totlampsel;
+ uint64_t tottri;
+ uint64_t totgplayer, totgpframe, totgpstroke, totgppoint;
char infostr[MAX_INFO_LEN];
} SceneStats;
@@ -450,7 +450,7 @@ static void stats_string(ViewLayer *view_layer)
/* Generate formatted numbers */
#define SCENE_STATS_FMT_INT(_id) \
- BLI_str_format_int_grouped(stats_fmt._id, stats->_id)
+ BLI_str_format_uint64_grouped(stats_fmt._id, stats->_id)
SCENE_STATS_FMT_INT(totvert);
SCENE_STATS_FMT_INT(totvertsel);