Split the geometry information from weston_surface out into weston_view
[platform/upstream/weston.git] / tests / surface-global-test.c
1 /*
2  * Copyright © 2012 Intel Corporation
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and
5  * its documentation for any purpose is hereby granted without fee, provided
6  * that the above copyright notice appear in all copies and that both that
7  * copyright notice and this permission notice appear in supporting
8  * documentation, and that the name of the copyright holders not be used in
9  * advertising or publicity pertaining to distribution of the software
10  * without specific, written prior permission.  The copyright holders make
11  * no representations about the suitability of this software for any
12  * purpose.  It is provided "as is" without express or implied warranty.
13  *
14  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
15  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
16  * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
17  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
18  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
19  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21  */
22
23 #include <assert.h>
24
25 #include "../src/compositor.h"
26
27 static void
28 surface_to_from_global(void *data)
29 {
30         struct weston_compositor *compositor = data;
31         struct weston_surface *surface;
32         struct weston_view *view;
33         float x, y;
34         wl_fixed_t fx, fy;
35         int32_t ix, iy;
36
37         surface = weston_surface_create(compositor);
38         assert(surface);
39         view = weston_view_create(surface);
40         assert(view);
41         weston_view_configure(view, 5, 10, 50, 50);
42         weston_view_update_transform(view);
43
44         weston_view_to_global_float(view, 33, 22, &x, &y);
45         assert(x == 38 && y == 32);
46
47         weston_view_to_global_float(view, -8, -2, &x, &y);
48         assert(x == -3 && y == 8);
49
50         weston_view_to_global_fixed(view, wl_fixed_from_int(12),
51                                        wl_fixed_from_int(5), &fx, &fy);
52         assert(fx == wl_fixed_from_int(17) && fy == wl_fixed_from_int(15));
53
54         weston_view_from_global_float(view, 38, 32, &x, &y);
55         assert(x == 33 && y == 22);
56
57         weston_view_from_global_float(view, 42, 5, &x, &y);
58         assert(x == 37 && y == -5);
59
60         weston_view_from_global_fixed(view, wl_fixed_from_int(21),
61                                          wl_fixed_from_int(100), &fx, &fy);
62         assert(fx == wl_fixed_from_int(16) && fy == wl_fixed_from_int(90));
63
64         weston_view_from_global(view, 0, 0, &ix, &iy);
65         assert(ix == -5 && iy == -10);
66
67         weston_view_from_global(view, 5, 10, &ix, &iy);
68         assert(ix == 0 && iy == 0);
69
70         wl_display_terminate(compositor->wl_display);
71 }
72
73 WL_EXPORT int
74 module_init(struct weston_compositor *compositor, int *argc, char *argv[])
75 {
76         struct wl_event_loop *loop;
77
78         loop = wl_display_get_event_loop(compositor->wl_display);
79
80         wl_event_loop_add_idle(loop, surface_to_from_global, compositor);
81
82         return 0;
83 }