clutter/stage-cogl: Use G_USEC_PER_SEC instead of hardcoded number

One million is the number of microseconds in one second, which is also
defined by `G_USEC_PER_SEC`.

https://gitlab.gnome.org/GNOME/mutter/merge_requests/363
This commit is contained in:
Daniel van Vugt 2019-04-02 17:03:11 +08:00
parent 0487d672ed
commit 912a9ecfba

View File

@ -201,7 +201,7 @@ clutter_stage_cogl_schedule_update (ClutterStageWindow *stage_window,
if (refresh_rate == 0.0) if (refresh_rate == 0.0)
refresh_rate = 60.0; refresh_rate = 60.0;
refresh_interval = (gint64) (0.5 + 1000000 / refresh_rate); refresh_interval = (gint64) (0.5 + G_USEC_PER_SEC / refresh_rate);
if (refresh_interval == 0) if (refresh_interval == 0)
refresh_interval = 16667; /* 1/60th second */ refresh_interval = 16667; /* 1/60th second */