mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 01:20:42 -05:00
meta-window-actor: Fix offset calculation in queue_send_frame_messages_timeout
The current time offset calculation is wrong. It is supposed to calculate the offset between the current time and the "time where it message should be sent" (last_time + interval). Fix the math to actually do that. https://bugzilla.gnome.org/show_bug.cgi?id=709340
This commit is contained in:
parent
a6bf340ff8
commit
c24d9bf142
@ -1007,7 +1007,7 @@ queue_send_frame_messages_timeout (MetaWindowActor *self)
|
|||||||
}
|
}
|
||||||
|
|
||||||
interval = (int)(1000000 / refresh_rate) * 6;
|
interval = (int)(1000000 / refresh_rate) * 6;
|
||||||
offset = MAX (0, current_time - priv->frame_drawn_time + interval) / 1000;
|
offset = MAX (0, priv->frame_drawn_time + interval - current_time) / 1000;
|
||||||
|
|
||||||
/* The clutter master clock source has already been added with META_PRIORITY_REDRAW,
|
/* The clutter master clock source has already been added with META_PRIORITY_REDRAW,
|
||||||
* so the timer will run *after* the clutter frame handling, if a frame is ready
|
* so the timer will run *after* the clutter frame handling, if a frame is ready
|
||||||
|
Loading…
Reference in New Issue
Block a user