diff options
author | Damien Lespiau <damien.lespiau@intel.com> | 2009-09-07 15:26:13 +0100 |
---|---|---|
committer | Damien Lespiau <damien.lespiau@intel.com> | 2009-09-07 15:26:13 +0100 |
commit | fbf744187db4c7bd5491092812f9e91477785c1a (patch) | |
tree | c8ba2f1801ac9871449d9f4056e7c315b30eef2b /tests | |
parent | a98e0a09e36e0c680368279793d803ba384939b6 (diff) |
[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.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-alpha.c | 4 | ||||
-rw-r--r-- | tests/test-rgb-upload.c | 4 | ||||
-rw-r--r-- | tests/test-yuv-upload.c | 4 |
3 files changed, 6 insertions, 6 deletions
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; |