tests: Only run buffer-count test if we have at least mesa 10
[platform/upstream/weston.git] / tests / weston-test-client-helper.h
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 #ifndef _WESTON_TEST_CLIENT_HELPER_H_
24 #define _WESTON_TEST_CLIENT_HELPER_H_
25
26 #include <assert.h>
27 #include "weston-test-runner.h"
28 #include "wayland-test-client-protocol.h"
29
30 struct client {
31         struct wl_display *wl_display;
32         struct wl_registry *wl_registry;
33         struct wl_compositor *wl_compositor;
34         struct wl_shm *wl_shm;
35         struct test *test;
36         struct input *input;
37         struct output *output;
38         struct surface *surface;
39         int has_argb;
40         struct wl_list global_list;
41 };
42
43 struct global {
44         uint32_t name;
45         char *interface;
46         uint32_t version;
47         struct wl_list link;
48 };
49
50 struct test {
51         struct wl_test *wl_test;
52         int pointer_x;
53         int pointer_y;
54         uint32_t n_egl_buffers;
55 };
56
57 struct input {
58         struct wl_seat *wl_seat;
59         struct pointer *pointer;
60         struct keyboard *keyboard;
61 };
62
63 struct pointer {
64         struct wl_pointer *wl_pointer;
65         struct surface *focus;
66         int x;
67         int y;
68         uint32_t button;
69         uint32_t state;
70 };
71
72 struct keyboard {
73         struct wl_keyboard *wl_keyboard;
74         struct surface *focus;
75         uint32_t key;
76         uint32_t state;
77         uint32_t mods_depressed;
78         uint32_t mods_latched;
79         uint32_t mods_locked;
80         uint32_t group;
81 };
82
83 struct output {
84         struct wl_output *wl_output;
85         int x;
86         int y;
87         int width;
88         int height;
89 };
90
91 struct surface {
92         struct wl_surface *wl_surface;
93         struct wl_buffer *wl_buffer;
94         struct output *output;
95         int x;
96         int y;
97         int width;
98         int height;
99         void *data;
100 };
101
102 struct client *
103 client_create(int x, int y, int width, int height);
104
105 struct wl_buffer *
106 create_shm_buffer(struct client *client, int width, int height, void **pixels);
107
108 int
109 surface_contains(struct surface *surface, int x, int y);
110
111 void
112 move_client(struct client *client, int x, int y);
113
114 #define client_roundtrip(c) do { \
115         assert(wl_display_roundtrip((c)->wl_display) >= 0); \
116 } while (0)
117
118 struct wl_callback *
119 frame_callback_set(struct wl_surface *surface, int *done);
120
121 void
122 frame_callback_wait(struct client *client, int *done);
123
124 int
125 get_n_egl_buffers(struct client *client);
126
127 void
128 skip(const char *fmt, ...);
129
130 #endif