tests/clutter/timeline-interpolate: Assorted style cleanups

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1751>
This commit is contained in:
Jonas Ådahl 2021-03-01 14:38:09 +01:00 committed by Marge Bot
parent b155063227
commit 0d3840b056

View File

@ -25,23 +25,23 @@ typedef struct _TestState
{
ClutterTimeline *timeline;
int64_t start_time;
guint new_frame_counter;
gint expected_frame;
gint completion_count;
int new_frame_counter;
int expected_frame;
int completion_count;
gboolean passed;
} TestState;
static void
new_frame_cb (ClutterTimeline *timeline,
gint frame_num,
int frame_num,
TestState *state)
{
int64_t current_time;
gint current_frame;
glong msec_diff;
gint loop_overflow = 0;
static gint step = 1;
int current_frame;
long msec_diff;
int loop_overflow = 0;
static int step = 1;
current_time = g_get_real_time ();
@ -114,7 +114,6 @@ new_frame_cb (ClutterTimeline *timeline,
step = -step;
}
static void
completed_cb (ClutterTimeline *timeline,
TestState *state)
@ -141,13 +140,13 @@ timeline_interpolation (void)
state.timeline =
clutter_timeline_new_for_actor (stage, TEST_TIMELINE_DURATION);
clutter_timeline_set_repeat_count (state.timeline, -1);
g_signal_connect (G_OBJECT(state.timeline),
g_signal_connect (state.timeline,
"new-frame",
G_CALLBACK(new_frame_cb),
G_CALLBACK (new_frame_cb),
&state);
g_signal_connect (G_OBJECT(state.timeline),
g_signal_connect (state.timeline,
"completed",
G_CALLBACK(completed_cb),
G_CALLBACK (completed_cb),
&state);
state.completion_count = 0;