mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 11:32:04 +00:00
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:
parent
0487d672ed
commit
912a9ecfba
@ -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 */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user