[mutter] clutter/util: Fix styling on functions definitions
- From: Jonas Ådahl <jadahl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter] clutter/util: Fix styling on functions definitions
- Date: Tue, 21 May 2019 09:34:20 +0000 (UTC)
commit 29211c902017fa8682bc5559d2e50420cfa6a1a7
Author: Marco Trevisan (Treviño) <mail 3v1n0 net>
Date: Fri Mar 1 20:50:49 2019 +0100
clutter/util: Fix styling on functions definitions
https://gitlab.gnome.org/GNOME/mutter/merge_requests/469
clutter/clutter/clutter-util.c | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
---
diff --git a/clutter/clutter/clutter-util.c b/clutter/clutter/clutter-util.c
index 05d5d0e4c..917da76be 100644
--- a/clutter/clutter/clutter-util.c
+++ b/clutter/clutter/clutter-util.c
@@ -106,8 +106,9 @@ _clutter_util_fully_transform_vertices (const CoglMatrix *modelview,
}
}
-void _clutter_util_rect_from_rectangle (const cairo_rectangle_int_t *src,
- ClutterRect *dest)
+void
+_clutter_util_rect_from_rectangle (const cairo_rectangle_int_t *src,
+ ClutterRect *dest)
{
*dest = (ClutterRect) {
.origin = {
@@ -121,8 +122,9 @@ void _clutter_util_rect_from_rectangle (const cairo_rectangle_int_t *src,
};
}
-void _clutter_util_rectangle_int_extents (const ClutterRect *src,
- cairo_rectangle_int_t *dest)
+void
+_clutter_util_rectangle_int_extents (const ClutterRect *src,
+ cairo_rectangle_int_t *dest)
{
ClutterRect tmp = *src;
@@ -136,10 +138,11 @@ void _clutter_util_rectangle_int_extents (const ClutterRect *src,
};
}
-void _clutter_util_rectangle_offset (const cairo_rectangle_int_t *src,
- int x,
- int y,
- cairo_rectangle_int_t *dest)
+void
+_clutter_util_rectangle_offset (const cairo_rectangle_int_t *src,
+ int x,
+ int y,
+ cairo_rectangle_int_t *dest)
{
*dest = *src;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]