clutter/stage: Remove fps_timer

It's unused since a9a9a0d1c5.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1603>
This commit is contained in:
Daniel van Vugt 2020-07-03 16:15:35 +08:00 committed by Marge Bot
parent efb577efb0
commit 17dbb98811

View File

@ -121,9 +121,6 @@ struct _ClutterStagePrivate
gint sync_delay;
GTimer *fps_timer;
gint32 timer_n_frames;
ClutterStageState current_state;
int update_freeze_count;
@ -1306,9 +1303,6 @@ clutter_stage_finalize (GObject *object)
g_array_free (priv->paint_volume_stack, TRUE);
if (priv->fps_timer != NULL)
g_timer_destroy (priv->fps_timer);
G_OBJECT_CLASS (clutter_stage_parent_class)->finalize (object);
}