diff options
author | Marek Olšák <[email protected]> | 2013-04-11 13:16:42 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2013-04-16 13:56:47 +0200 |
commit | 8616b224bf267d2d114cf32c3242912313e9ccc4 (patch) | |
tree | e4b5a63109d970d71ed501d64eb2164f368eeeba | |
parent | 332af88c391924c70bbcbeb4c131caea796534f6 (diff) |
gallium/hud: fix FPS computation for framerate > 4.2k
-rw-r--r-- | src/gallium/auxiliary/hud/hud_fps.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/hud/hud_fps.c b/src/gallium/auxiliary/hud/hud_fps.c index 71cdfd04ee7..80381f54713 100644 --- a/src/gallium/auxiliary/hud/hud_fps.c +++ b/src/gallium/auxiliary/hud/hud_fps.c @@ -47,7 +47,8 @@ query_fps(struct hud_graph *gr) if (info->last_time) { if (info->last_time + gr->pane->period <= now) { - double fps = info->frames * 1000000 / (double)(now - info->last_time); + double fps = (uint64_t)info->frames * 1000000 / + (double)(now - info->last_time); info->frames = 0; info->last_time = now; |