mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 18:11:05 -05:00
tests/interactive: Cleanup tabs
I also sneaked in some code style fixes on the lines that were touched. Judge me freely, it's all for the greater good. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2355>
This commit is contained in:
parent
f25360677f
commit
83e0553534
@ -244,9 +244,7 @@ test_actors_main (int argc, char *argv[])
|
||||
/* Show everying */
|
||||
clutter_actor_show (oh->stage);
|
||||
|
||||
g_signal_connect (oh->stage, "key-release-event",
|
||||
G_CALLBACK (input_cb),
|
||||
oh);
|
||||
g_signal_connect (oh->stage, "key-release-event", G_CALLBACK (input_cb), oh);
|
||||
|
||||
/* and start it */
|
||||
clutter_timeline_start (oh->timeline);
|
||||
|
@ -90,7 +90,8 @@ draw_flower (ClutterCanvas *canvas,
|
||||
idx = (rand() % (sizeof (colors) / sizeof (double) / 3)) * 3;
|
||||
} while (idx == last_idx);
|
||||
|
||||
cairo_set_source_rgba (cr, colors[idx], colors[idx+1],
|
||||
cairo_set_source_rgba (cr,
|
||||
colors[idx], colors[idx+1],
|
||||
colors[idx+2], 0.5);
|
||||
|
||||
last_idx = idx;
|
||||
@ -233,7 +234,8 @@ test_cairo_flowers_main (int argc, char **argv)
|
||||
clutter_container_add_actor (CLUTTER_CONTAINER (stage),
|
||||
flowers[i]->ctex);
|
||||
clutter_actor_set_position (flowers[i]->ctex,
|
||||
flowers[i]->x, flowers[i]->y);
|
||||
flowers[i]->x,
|
||||
flowers[i]->y);
|
||||
}
|
||||
|
||||
/* fire a callback for frame change */
|
||||
|
@ -40,7 +40,7 @@ test_cogl_multitexture_describe (void);
|
||||
|
||||
static void
|
||||
frame_cb (ClutterTimeline *timeline,
|
||||
gint frame_no,
|
||||
int frame_no,
|
||||
gpointer data)
|
||||
{
|
||||
TestMultiLayerPipelineState *state = data;
|
||||
@ -214,8 +214,7 @@ test_cogl_multitexture_main (int argc, char *argv[])
|
||||
&GRAPHENE_POINT3D_INIT (0.5, 0.5, 0));
|
||||
|
||||
clutter_actor_set_translation (data->parent_container, -86.f, -125.f, 0.f);
|
||||
clutter_container_add_actor (CLUTTER_CONTAINER(stage),
|
||||
state->group);
|
||||
clutter_container_add_actor (CLUTTER_CONTAINER(stage), state->group);
|
||||
|
||||
state->timeline = clutter_timeline_new_for_actor (stage, 2812);
|
||||
|
||||
|
@ -343,7 +343,7 @@ test_coglbox_new (void)
|
||||
|
||||
static void
|
||||
frame_cb (ClutterTimeline *timeline,
|
||||
gint elapsed_msecs,
|
||||
int elapsed_msecs,
|
||||
gpointer data)
|
||||
{
|
||||
TestCoglboxPrivate *priv = TEST_COGLBOX_GET_PRIVATE (data);
|
||||
|
@ -187,7 +187,7 @@ test_coglbox_new (void)
|
||||
|
||||
static void
|
||||
frame_cb (ClutterTimeline *timeline,
|
||||
gint msecs,
|
||||
int msecs,
|
||||
gpointer data)
|
||||
{
|
||||
TestCoglboxPrivate *priv = TEST_COGLBOX_GET_PRIVATE (data);
|
||||
|
Loading…
Reference in New Issue
Block a user