From fbf744187db4c7bd5491092812f9e91477785c1a Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Mon, 7 Sep 2009 15:26:13 +0100 Subject: [misc] size-change signal signature uses gints During a short periode it used gfloats for the texture size, but got reverted to gints shortly after. I forgot to update the signal signature. --- tests/test-alpha.c | 4 ++-- tests/test-rgb-upload.c | 4 ++-- tests/test-yuv-upload.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'tests') diff --git a/tests/test-alpha.c b/tests/test-alpha.c index 224062d..9214e90 100644 --- a/tests/test-alpha.c +++ b/tests/test-alpha.c @@ -66,8 +66,8 @@ parse_fourcc (const gchar *fourcc) void size_change (ClutterTexture *texture, - gfloat width, - gfloat height, + gint width, + gint height, gpointer user_data) { ClutterActor *stage; diff --git a/tests/test-rgb-upload.c b/tests/test-rgb-upload.c index e5be8be..273997d 100644 --- a/tests/test-rgb-upload.c +++ b/tests/test-rgb-upload.c @@ -63,8 +63,8 @@ static GOptionEntry options[] = void size_change (ClutterTexture *texture, - gfloat width, - gfloat height, + gint width, + gint height, gpointer user_data) { ClutterActor *stage; diff --git a/tests/test-yuv-upload.c b/tests/test-yuv-upload.c index 996af24..a15fc27 100644 --- a/tests/test-yuv-upload.c +++ b/tests/test-yuv-upload.c @@ -62,8 +62,8 @@ parse_fourcc (const gchar *fourcc) void size_change (ClutterTexture *texture, - gfloat width, - gfloat height, + gint width, + gint height, gpointer user_data) { ClutterActor *stage; -- cgit v1.2.1