malloc + memset -> zalloc
[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         float x, y;
33         wl_fixed_t fx, fy;
34         int32_t ix, iy;
35
36         surface = weston_surface_create(compositor);
37         weston_surface_configure(surface, 5, 10, 50, 50);
38         weston_surface_update_transform(surface);
39
40         weston_surface_to_global_float(surface, 33, 22, &x, &y);
41         assert(x == 38 && y == 32);
42
43         weston_surface_to_global_float(surface, -8, -2, &x, &y);
44         assert(x == -3 && y == 8);
45
46         weston_surface_to_global_fixed(surface, wl_fixed_from_int(12),
47                                        wl_fixed_from_int(5), &fx, &fy);
48         assert(fx == wl_fixed_from_int(17) && fy == wl_fixed_from_int(15));
49
50         weston_surface_from_global_float(surface, 38, 32, &x, &y);
51         assert(x == 33 && y == 22);
52
53         weston_surface_from_global_float(surface, 42, 5, &x, &y);
54         assert(x == 37 && y == -5);
55
56         weston_surface_from_global_fixed(surface, wl_fixed_from_int(21),
57                                          wl_fixed_from_int(100), &fx, &fy);
58         assert(fx == wl_fixed_from_int(16) && fy == wl_fixed_from_int(90));
59
60         weston_surface_from_global(surface, 0, 0, &ix, &iy);
61         assert(ix == -5 && iy == -10);
62
63         weston_surface_from_global(surface, 5, 10, &ix, &iy);
64         assert(ix == 0 && iy == 0);
65
66         wl_display_terminate(compositor->wl_display);
67 }
68
69 WL_EXPORT int
70 module_init(struct weston_compositor *compositor, int *argc, char *argv[])
71 {
72         struct wl_event_loop *loop;
73
74         loop = wl_display_get_event_loop(compositor->wl_display);
75
76         wl_event_loop_add_idle(loop, surface_to_from_global, compositor);
77
78         return 0;
79 }