blob: cb60e5f657f01b4df350e9950bc52060a6c4a331 [file] [log] [blame]
Kristian Høgsberg8334bc12012-01-03 10:29:47 -05001/*
2 * Copyright © 2008-2011 Kristian Høgsberg
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 _WAYLAND_SYSTEM_COMPOSITOR_H_
24#define _WAYLAND_SYSTEM_COMPOSITOR_H_
25
26#include <libudev.h>
27#include <pixman.h>
28#include <wayland-server.h>
29
30#include <GLES2/gl2.h>
31#include <GLES2/gl2ext.h>
32#include <EGL/egl.h>
33#include <EGL/eglext.h>
34
Pekka Paalanen668ca372012-01-12 14:30:47 +020035#include "matrix.h"
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050036
37struct weston_transform {
38 struct weston_matrix matrix;
Pekka Paalanenc61eca62012-01-06 14:10:06 +020039 struct wl_list link;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050040};
41
42struct weston_surface;
43struct weston_input_device;
44
45struct weston_mode {
46 uint32_t flags;
47 int32_t width, height;
48 uint32_t refresh;
49 struct wl_list link;
50};
51
52struct weston_output {
53 struct wl_list link;
54 struct weston_compositor *compositor;
55 struct weston_matrix matrix;
56 struct wl_list frame_callback_list;
57 int32_t x, y, mm_width, mm_height;
58 pixman_region32_t region;
59 pixman_region32_t previous_damage;
60 uint32_t flags;
61 int repaint_needed;
62 int repaint_scheduled;
63
64 char *make, *model;
65 uint32_t subpixel;
66
67 struct weston_mode *current;
68 struct wl_list mode_list;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050069
Kristian Høgsberg68c479a2012-01-25 23:32:28 -050070 void (*repaint)(struct weston_output *output);
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050071 int (*set_hardware_cursor)(struct weston_output *output,
72 struct weston_input_device *input);
73 void (*destroy)(struct weston_output *output);
74};
75
76struct weston_input_device {
77 struct wl_input_device input_device;
78 struct weston_compositor *compositor;
79 struct weston_surface *sprite;
80 int32_t hotspot_x, hotspot_y;
81 struct wl_list link;
82 uint32_t modifier_state;
Kristian Høgsberga82c4862012-01-26 01:03:58 -050083 int hw_cursor;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050084
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050085 uint32_t num_tp;
86 struct wl_surface *touch_focus;
87 struct wl_listener touch_focus_listener;
88 struct wl_resource *touch_focus_resource;
89 struct wl_listener touch_focus_resource_listener;
90};
91
92enum weston_visual {
93 WESTON_NONE_VISUAL,
94 WESTON_ARGB_VISUAL,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050095 WESTON_RGB_VISUAL
96};
97
98struct weston_shader {
99 GLuint program;
100 GLuint vertex_shader, fragment_shader;
101 GLuint proj_uniform;
102 GLuint tex_uniform;
103 GLuint alpha_uniform;
104 GLuint color_uniform;
Pekka Paalanen0e151bb2012-01-24 14:47:37 +0200105 GLuint texwidth_uniform;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500106};
107
108struct weston_animation {
109 void (*frame)(struct weston_animation *animation,
110 struct weston_output *output, uint32_t msecs);
111 struct wl_list link;
112};
113
114struct weston_spring {
115 double k;
116 double friction;
117 double current;
118 double target;
119 double previous;
120 uint32_t timestamp;
121};
122
123struct weston_shell {
124 void (*lock)(struct weston_shell *shell);
125 void (*unlock)(struct weston_shell *shell);
126 void (*map)(struct weston_shell *shell, struct weston_surface *surface,
127 int32_t width, int32_t height);
128 void (*configure)(struct weston_shell *shell,
129 struct weston_surface *surface,
130 int32_t x, int32_t y, int32_t width, int32_t height);
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500131 void (*destroy)(struct weston_shell *shell);
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500132};
133
134enum {
135 WESTON_COMPOSITOR_ACTIVE,
136 WESTON_COMPOSITOR_IDLE, /* shell->unlock called on activity */
137 WESTON_COMPOSITOR_SLEEPING /* no rendering, no frame events */
138};
139
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500140struct screenshooter;
141
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500142struct weston_compositor {
143 struct wl_shm *shm;
144 struct weston_xserver *wxs;
145
146 EGLDisplay display;
147 EGLContext context;
148 EGLConfig config;
149 GLuint fbo;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500150 uint32_t current_alpha;
151 struct weston_shader texture_shader;
152 struct weston_shader solid_shader;
Kristian Høgsberg07632622012-01-25 23:02:06 -0500153 struct weston_shader *current_shader;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500154 struct wl_display *wl_display;
155
156 struct weston_shell *shell;
157
158 /* There can be more than one, but not right now... */
159 struct wl_input_device *input_device;
160
161 struct wl_list output_list;
162 struct wl_list input_device_list;
163 struct wl_list surface_list;
164 struct wl_list binding_list;
165 struct wl_list animation_list;
166 struct {
167 struct weston_spring spring;
168 struct weston_animation animation;
Kristian Høgsberg681f9f42012-01-26 10:55:10 -0500169 struct weston_surface *surface;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500170 } fade;
171
172 uint32_t state;
173 struct wl_event_source *idle_source;
174 uint32_t idle_inhibit;
175 int option_idle_time; /* default timeout, s */
176 int idle_time; /* effective timeout, s */
177
178 /* Repaint state. */
179 struct timespec previous_swap;
180 struct wl_array vertices, indices;
181
182 struct weston_surface *overlay;
183 struct weston_switcher *switcher;
184 uint32_t focus;
185
186 PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC
187 image_target_renderbuffer_storage;
188 PFNGLEGLIMAGETARGETTEXTURE2DOESPROC image_target_texture_2d;
189 PFNEGLCREATEIMAGEKHRPROC create_image;
190 PFNEGLDESTROYIMAGEKHRPROC destroy_image;
191 PFNEGLBINDWAYLANDDISPLAYWL bind_display;
192 PFNEGLUNBINDWAYLANDDISPLAYWL unbind_display;
193 int has_bind_display;
194
195 void (*destroy)(struct weston_compositor *ec);
196 int (*authenticate)(struct weston_compositor *c, uint32_t id);
197 EGLImageKHR (*create_cursor_image)(struct weston_compositor *c,
198 int32_t *width, int32_t *height);
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500199
200 struct screenshooter *screenshooter;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500201};
202
203#define MODIFIER_CTRL (1 << 8)
204#define MODIFIER_ALT (1 << 9)
205#define MODIFIER_SUPER (1 << 10)
206
207enum weston_output_flags {
208 WL_OUTPUT_FLIPPED = 0x01
209};
210
211struct weston_surface {
212 struct wl_surface surface;
213 struct weston_compositor *compositor;
Kristian Høgsberg46e64ee2012-01-26 09:28:42 -0500214 GLuint texture;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500215 pixman_region32_t damage;
216 pixman_region32_t opaque;
Pekka Paalanenba3cf952012-01-25 16:22:05 +0200217 int32_t width, height;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500218 int32_t pitch;
219 struct wl_list link;
220 struct wl_list buffer_link;
Kristian Høgsberg07632622012-01-25 23:02:06 -0500221 struct weston_shader *shader;
222 GLfloat color[4];
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500223 uint32_t alpha;
224 uint32_t visual;
Kristian Høgsberg765bcdf2012-01-25 22:20:30 -0500225 int overlapped;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500226
Pekka Paalanenbc0b7e72012-01-24 09:53:37 +0200227 /* Surface geometry state, mutable.
228 * If you change anything, set dirty = 1.
229 * That includes the transformations referenced from the list.
230 */
Pekka Paalanenc61eca62012-01-06 14:10:06 +0200231 struct {
Pekka Paalanenba3cf952012-01-25 16:22:05 +0200232 int32_t x, y; /* surface translation on display */
233
Pekka Paalanenbc0b7e72012-01-24 09:53:37 +0200234 /* struct weston_transform */
235 struct wl_list transformation_list;
Pekka Paalanenc61eca62012-01-06 14:10:06 +0200236
Pekka Paalanenbc0b7e72012-01-24 09:53:37 +0200237 int dirty;
238 } geometry;
239
240 /* State derived from geometry state, read-only.
241 * This is updated by weston_surface_update_transform().
242 */
243 struct {
244 /* matrix and inverse are used only if enabled = 1.
245 * If enabled = 0, use x, y, width, height directly.
246 */
247 int enabled;
Pekka Paalanen061b7472012-01-12 15:00:57 +0200248 struct weston_matrix matrix;
Pekka Paalanend1f0ab62012-01-20 10:47:57 +0200249 struct weston_matrix inverse;
Pekka Paalanencd403622012-01-25 13:37:39 +0200250
251 struct weston_transform position; /* matrix from x, y */
Pekka Paalanenc61eca62012-01-06 14:10:06 +0200252 } transform;
253
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500254 /*
255 * Which output to vsync this surface to.
256 * Used to determine, whether to send or queue frame events.
257 * Must be NULL, if 'link' is not in weston_compositor::surface_list.
258 */
259 struct weston_output *output;
260
261 struct weston_output *fullscreen_output;
262 struct wl_list frame_callback_list;
263
264 EGLImageKHR image;
265
266 struct wl_buffer *buffer;
267 struct wl_listener buffer_destroy_listener;
268};
269
Kristian Høgsberg9ddb8262012-01-04 21:30:29 -0500270void
Pekka Paalanen460099f2012-01-20 16:48:25 +0200271weston_surface_update_transform(struct weston_surface *surface);
272
273void
Pekka Paalanene0f3cb22012-01-24 09:59:29 +0200274weston_surface_to_global(struct weston_surface *surface,
275 int32_t sx, int32_t sy, int32_t *x, int32_t *y);
276
277void
278weston_surface_from_global(struct weston_surface *surface,
279 int32_t x, int32_t y, int32_t *sx, int32_t *sy);
280
281void
Kristian Høgsberg9ddb8262012-01-04 21:30:29 -0500282weston_device_repick(struct wl_input_device *device, uint32_t time);
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500283
284void
285weston_spring_init(struct weston_spring *spring,
286 double k, double current, double target);
287void
288weston_spring_update(struct weston_spring *spring, uint32_t msec);
289int
290weston_spring_done(struct weston_spring *spring);
291
292void
293weston_surface_activate(struct weston_surface *surface,
294 struct weston_input_device *device, uint32_t time);
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500295void
296weston_surface_draw(struct weston_surface *es, struct weston_output *output);
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500297
298void
299notify_motion(struct wl_input_device *device,
300 uint32_t time, int x, int y);
301void
302notify_button(struct wl_input_device *device,
303 uint32_t time, int32_t button, int32_t state);
304void
305notify_key(struct wl_input_device *device,
306 uint32_t time, uint32_t key, uint32_t state);
307
308void
309notify_pointer_focus(struct wl_input_device *device,
310 uint32_t time,
311 struct weston_output *output,
312 int32_t x, int32_t y);
313
314void
315notify_keyboard_focus(struct wl_input_device *device,
316 uint32_t time, struct weston_output *output,
317 struct wl_array *keys);
318
319void
320notify_touch(struct wl_input_device *device, uint32_t time, int touch_id,
321 int x, int y, int touch_type);
322
323void
324weston_output_finish_frame(struct weston_output *output, int msecs);
325void
326weston_output_damage(struct weston_output *output);
Kristian Høgsberg9ddb8262012-01-04 21:30:29 -0500327struct weston_surface *
328weston_compositor_pick_surface(struct weston_compositor *compositor,
329 int32_t x, int32_t y, int32_t *sx, int32_t *sy);
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500330void
331weston_compositor_repick(struct weston_compositor *compositor);
332void
333weston_compositor_schedule_repaint(struct weston_compositor *compositor);
334void
335weston_compositor_fade(struct weston_compositor *compositor, float tint);
336void
337weston_compositor_damage_all(struct weston_compositor *compositor);
338void
339weston_compositor_unlock(struct weston_compositor *compositor);
340void
341weston_compositor_wake(struct weston_compositor *compositor);
342void
343weston_compositor_activity(struct weston_compositor *compositor);
344
345struct weston_binding;
346typedef void (*weston_binding_handler_t)(struct wl_input_device *device,
347 uint32_t time, uint32_t key,
348 uint32_t button,
349 uint32_t state, void *data);
350struct weston_binding *
351weston_compositor_add_binding(struct weston_compositor *compositor,
352 uint32_t key, uint32_t button, uint32_t modifier,
353 weston_binding_handler_t binding, void *data);
354void
355weston_binding_destroy(struct weston_binding *binding);
356
357void
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500358weston_binding_list_destroy_all(struct wl_list *list);
359
360void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500361weston_compositor_run_binding(struct weston_compositor *compositor,
362 struct weston_input_device *device,
363 uint32_t time,
364 uint32_t key, uint32_t button, int32_t state);
Kristian Høgsberga82c4862012-01-26 01:03:58 -0500365struct wl_list *
366weston_compositor_top(struct weston_compositor *compositor);
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500367
368struct weston_surface *
369weston_surface_create(struct weston_compositor *compositor,
370 int32_t x, int32_t y, int32_t width, int32_t height);
371
372void
373weston_surface_configure(struct weston_surface *surface,
374 int x, int y, int width, int height);
375
376void
377weston_surface_assign_output(struct weston_surface *surface);
378
379void
380weston_surface_damage(struct weston_surface *surface);
381
382void
383weston_surface_damage_below(struct weston_surface *surface);
384
385void
386weston_surface_damage_rectangle(struct weston_surface *surface,
387 int32_t x, int32_t y,
388 int32_t width, int32_t height);
389
Kristian Høgsberg9f404b72012-01-26 00:11:01 -0500390void
391weston_buffer_post_release(struct wl_buffer *buffer);
392
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500393uint32_t
394weston_compositor_get_time(void);
395
396int
397weston_compositor_init(struct weston_compositor *ec, struct wl_display *display);
398void
399weston_compositor_shutdown(struct weston_compositor *ec);
400void
401weston_output_move(struct weston_output *output, int x, int y);
402void
403weston_output_init(struct weston_output *output, struct weston_compositor *c,
404 int x, int y, int width, int height, uint32_t flags);
405void
406weston_output_destroy(struct weston_output *output);
407
408void
409weston_input_device_init(struct weston_input_device *device,
410 struct weston_compositor *ec);
411
412void
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500413weston_input_device_release(struct weston_input_device *device);
414
415void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500416weston_switcher_init(struct weston_compositor *compositor);
417
418enum {
419 TTY_ENTER_VT,
420 TTY_LEAVE_VT
421};
422
423typedef void (*tty_vt_func_t)(struct weston_compositor *compositor, int event);
424
425struct tty *
426tty_create(struct weston_compositor *compositor,
427 tty_vt_func_t vt_func, int tty_nr);
428
429void
430tty_destroy(struct tty *tty);
431
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500432struct screenshooter *
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500433screenshooter_create(struct weston_compositor *ec);
434
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500435void
436screenshooter_destroy(struct screenshooter *s);
437
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500438uint32_t *
439weston_load_image(const char *filename,
440 int32_t *width_arg, int32_t *height_arg,
441 uint32_t *stride_arg);
442
443struct weston_process;
444typedef void (*weston_process_cleanup_func_t)(struct weston_process *process,
445 int status);
446
447struct weston_process {
448 pid_t pid;
449 weston_process_cleanup_func_t cleanup;
450 struct wl_list link;
451};
452
453struct wl_client *
454weston_client_launch(struct weston_compositor *compositor,
455 struct weston_process *proc,
456 const char *path,
457 weston_process_cleanup_func_t cleanup);
458
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500459void
460weston_watch_process(struct weston_process *process);
461
462int
463weston_xserver_init(struct weston_compositor *compositor);
464void
465weston_xserver_destroy(struct weston_compositor *compositor);
466void
467weston_xserver_surface_activate(struct weston_surface *surface);
468void
469weston_xserver_set_selection(struct weston_input_device *device);
470
471struct weston_zoom;
472typedef void (*weston_zoom_done_func_t)(struct weston_zoom *zoom, void *data);
473
474struct weston_zoom *
475weston_zoom_run(struct weston_surface *surface, GLfloat start, GLfloat stop,
476 weston_zoom_done_func_t done, void *data);
477
478#endif