blob: 6670ab3721c7f2e52d152c7dac7adf112e5c2979 [file] [log] [blame]
U. Artie Eoff1ba9b382012-12-07 13:50:32 -08001/*
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
30struct 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;
Kristian Høgsberg1cb3df42012-12-11 23:03:56 -050040 struct wl_list global_list;
41};
42
43struct global {
44 uint32_t name;
45 char *interface;
46 uint32_t version;
47 struct wl_list link;
U. Artie Eoff1ba9b382012-12-07 13:50:32 -080048};
49
50struct test {
51 struct wl_test *wl_test;
52 int pointer_x;
53 int pointer_y;
Neil Roberts40c0c3f2013-10-29 20:13:45 +000054 uint32_t n_egl_buffers;
U. Artie Eoff1ba9b382012-12-07 13:50:32 -080055};
56
57struct input {
58 struct wl_seat *wl_seat;
59 struct pointer *pointer;
60 struct keyboard *keyboard;
61};
62
63struct 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
72struct 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
83struct output {
84 struct wl_output *wl_output;
85 int x;
86 int y;
87 int width;
88 int height;
89};
90
91struct 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
102struct client *
103client_create(int x, int y, int width, int height);
104
Pekka Paalanen32ac9b92013-02-08 17:01:26 +0200105struct wl_buffer *
106create_shm_buffer(struct client *client, int width, int height, void **pixels);
107
U. Artie Eoff1ba9b382012-12-07 13:50:32 -0800108int
109surface_contains(struct surface *surface, int x, int y);
110
111void
U. Artie Eoff1ba9b382012-12-07 13:50:32 -0800112move_client(struct client *client, int x, int y);
113
Pekka Paalanenf2aa64f2012-12-12 14:26:41 +0200114#define client_roundtrip(c) do { \
115 assert(wl_display_roundtrip((c)->wl_display) >= 0); \
116} while (0)
U. Artie Eoff1ba9b382012-12-07 13:50:32 -0800117
Pekka Paalanen8aaef7d2013-02-08 17:01:25 +0200118struct wl_callback *
119frame_callback_set(struct wl_surface *surface, int *done);
120
121void
122frame_callback_wait(struct client *client, int *done);
123
Neil Roberts40c0c3f2013-10-29 20:13:45 +0000124int
125get_n_egl_buffers(struct client *client);
126
Kristian Høgsberg42284f52014-01-01 17:38:04 -0800127void
128skip(const char *fmt, ...);
129
U. Artie Eoff1ba9b382012-12-07 13:50:32 -0800130#endif