Rename weston_compositor EGLDisplay member to egl_display
[profile/ivi/weston.git] / src / compositor.h
1 /*
2  * Copyright © 2008-2011 Kristian Høgsberg
3  * Copyright © 2012 Collabora, Ltd.
4  *
5  * Permission to use, copy, modify, distribute, and sell this software and
6  * its documentation for any purpose is hereby granted without fee, provided
7  * that the above copyright notice appear in all copies and that both that
8  * copyright notice and this permission notice appear in supporting
9  * documentation, and that the name of the copyright holders not be used in
10  * advertising or publicity pertaining to distribution of the software
11  * without specific, written prior permission.  The copyright holders make
12  * no representations about the suitability of this software for any
13  * purpose.  It is provided "as is" without express or implied warranty.
14  *
15  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
16  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17  * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
18  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
20  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  */
23
24 #ifndef _WAYLAND_SYSTEM_COMPOSITOR_H_
25 #define _WAYLAND_SYSTEM_COMPOSITOR_H_
26
27 #include <pixman.h>
28 #include <xkbcommon/xkbcommon.h>
29 #include <wayland-server.h>
30
31 #include <GLES2/gl2.h>
32 #include <GLES2/gl2ext.h>
33 #include <EGL/egl.h>
34 #include <EGL/eglext.h>
35
36 #include "matrix.h"
37 #include "../shared/config-parser.h"
38 #include "weston-egl-ext.h"
39
40
41 struct weston_transform {
42         struct weston_matrix matrix;
43         struct wl_list link;
44 };
45
46 struct weston_surface;
47 struct shell_surface;
48 struct weston_seat;
49 struct weston_output;
50
51 enum weston_keyboard_modifier {
52         MODIFIER_CTRL = (1 << 0),
53         MODIFIER_ALT = (1 << 1),
54         MODIFIER_SUPER = (1 << 2),
55 };
56
57 enum weston_led {
58         LED_NUM_LOCK = (1 << 0),
59         LED_CAPS_LOCK = (1 << 1),
60         LED_SCROLL_LOCK = (1 << 2),
61 };
62
63 struct weston_mode {
64         uint32_t flags;
65         int32_t width, height;
66         uint32_t refresh;
67         struct wl_list link;
68 };
69
70 struct weston_shell_client {
71         void (*send_configure)(struct weston_surface *surface,
72                                uint32_t edges, int32_t width, int32_t height);
73 };
74
75 struct weston_shell_interface {
76         void *shell;                    /* either desktop or tablet */
77
78         struct shell_surface *(*create_shell_surface)(void *shell,
79                                                       struct weston_surface *surface,
80                                                       const struct weston_shell_client *client);
81
82         void (*set_toplevel)(struct shell_surface *shsurf);
83
84         void (*set_transient)(struct shell_surface *shsurf,
85                               struct shell_surface *pshsurf,
86                               int x, int y, uint32_t flags);
87         int (*move)(struct shell_surface *shsurf, struct weston_seat *ws);
88         int (*resize)(struct shell_surface *shsurf,
89                       struct weston_seat *ws, uint32_t edges);
90
91 };
92
93 struct weston_border {
94         int32_t left, right, top, bottom;
95 };
96
97 struct weston_animation {
98         void (*frame)(struct weston_animation *animation,
99                       struct weston_output *output, uint32_t msecs);
100         int frame_counter;
101         struct wl_list link;
102 };
103
104 struct weston_spring {
105         double k;
106         double friction;
107         double current;
108         double target;
109         double previous;
110         uint32_t timestamp;
111 };
112
113 enum {
114         ZOOM_FOCUS_POINTER,
115         ZOOM_FOCUS_TEXT
116 };
117
118 struct weston_fixed_point {
119         wl_fixed_t x, y;
120 };
121
122 struct weston_output_zoom {
123         int active;
124         uint32_t type;
125         float increment;
126         float level;
127         float max_level;
128         float trans_x, trans_y;
129         struct weston_animation animation_z;
130         struct weston_spring spring_z;
131         struct weston_animation animation_xy;
132         struct weston_spring spring_xy;
133         struct weston_fixed_point from;
134         struct weston_fixed_point to;
135         struct weston_fixed_point current;
136         struct weston_fixed_point text_cursor;
137 };
138
139 /* bit compatible with drm definitions. */
140 enum dpms_enum {
141         WESTON_DPMS_ON,
142         WESTON_DPMS_STANDBY,
143         WESTON_DPMS_SUSPEND,
144         WESTON_DPMS_OFF
145 };
146
147 struct weston_read_pixels {
148         void *data;
149         int x, y, width, height;
150         void (*done)(struct weston_read_pixels *read_pixels,
151                      struct weston_output *output);
152         struct wl_list link;
153 };
154
155 struct weston_output {
156         uint32_t id;
157
158         struct wl_list link;
159         struct wl_list resource_list;
160         struct wl_global *global;
161         struct weston_compositor *compositor;
162         struct weston_matrix matrix;
163         struct wl_list animation_list;
164         int32_t x, y, mm_width, mm_height;
165         struct weston_border border;
166         pixman_region32_t region;
167         pixman_region32_t previous_damage;
168         uint32_t flags;
169         int repaint_needed;
170         int repaint_scheduled;
171         struct weston_output_zoom zoom;
172         int dirty;
173         struct wl_list read_pixels_list;
174         struct wl_signal frame_signal;
175
176         char *make, *model;
177         uint32_t subpixel;
178         
179         struct weston_mode *current;
180         struct weston_mode *origin;
181         struct wl_list mode_list;
182
183         void (*repaint)(struct weston_output *output,
184                         pixman_region32_t *damage);
185         void (*destroy)(struct weston_output *output);
186         void (*assign_planes)(struct weston_output *output);
187         int (*switch_mode)(struct weston_output *output, struct weston_mode *mode);
188
189         /* backlight values are on 0-255 range, where higher is brighter */
190         uint32_t backlight_current;
191         void (*set_backlight)(struct weston_output *output, uint32_t value);
192         void (*set_dpms)(struct weston_output *output, enum dpms_enum level);
193 };
194
195 struct weston_xkb_info {
196         struct xkb_keymap *keymap;
197         int keymap_fd;
198         size_t keymap_size;
199         char *keymap_area;
200         xkb_mod_index_t ctrl_mod;
201         xkb_mod_index_t alt_mod;
202         xkb_mod_index_t super_mod;
203         xkb_led_index_t num_led;
204         xkb_led_index_t caps_led;
205         xkb_led_index_t scroll_led;
206 };
207
208 struct weston_seat {
209         struct wl_seat seat;
210         struct wl_pointer pointer;
211         int has_pointer;
212         struct wl_keyboard keyboard;
213         int has_keyboard;
214         struct wl_touch touch;
215         int has_touch;
216
217         struct weston_compositor *compositor;
218         struct weston_surface *sprite;
219         struct wl_listener sprite_destroy_listener;
220         struct weston_surface *drag_surface;
221         struct wl_listener drag_surface_destroy_listener;
222         int32_t hotspot_x, hotspot_y;
223         struct wl_list link;
224         enum weston_keyboard_modifier modifier_state;
225         int hw_cursor;
226         struct wl_surface *saved_kbd_focus;
227         struct wl_listener saved_kbd_focus_listener;
228
229         uint32_t num_tp;
230         struct wl_surface *touch_focus;
231         struct wl_listener touch_focus_listener;
232         struct wl_resource *touch_focus_resource;
233         struct wl_listener touch_focus_resource_listener;
234
235         struct wl_listener new_drag_icon_listener;
236
237         void (*led_update)(struct weston_seat *ws, enum weston_led leds);
238
239         struct weston_xkb_info xkb_info;
240         struct {
241                 struct xkb_state *state;
242                 uint32_t mods_depressed;
243                 uint32_t mods_latched;
244                 uint32_t mods_locked;
245                 uint32_t group;
246                 enum weston_led leds;
247         } xkb_state;
248 };
249
250 struct weston_shader {
251         GLuint program;
252         GLuint vertex_shader, fragment_shader;
253         GLint proj_uniform;
254         GLint tex_uniform;
255         GLint alpha_uniform;
256         GLint color_uniform;
257         GLint texwidth_uniform;
258         GLint opaque_uniform;
259 };
260
261 enum {
262         WESTON_COMPOSITOR_ACTIVE,
263         WESTON_COMPOSITOR_IDLE,         /* shell->unlock called on activity */
264         WESTON_COMPOSITOR_SLEEPING      /* no rendering, no frame events */
265 };
266
267 struct weston_layer {
268         struct wl_list surface_list;
269         struct wl_list link;
270 };
271
272 struct weston_compositor {
273         struct wl_shm *shm;
274         struct wl_signal destroy_signal;
275
276         EGLDisplay egl_display;
277         EGLContext egl_context;
278         EGLConfig egl_config;
279         GLuint fbo;
280         struct weston_shader texture_shader;
281         struct weston_shader solid_shader;
282         struct weston_shader *current_shader;
283         struct wl_display *wl_display;
284         struct weston_shell_interface shell_interface;
285
286         struct wl_signal activate_signal;
287         struct wl_signal lock_signal;
288         struct wl_signal unlock_signal;
289
290         struct wl_event_loop *input_loop;
291         struct wl_event_source *input_loop_source;
292
293         /* There can be more than one, but not right now... */
294         struct weston_seat *seat;
295
296         struct weston_layer fade_layer;
297         struct weston_layer cursor_layer;
298
299         struct wl_list output_list;
300         struct wl_list seat_list;
301         struct wl_list layer_list;
302         struct wl_list surface_list;
303         struct wl_list key_binding_list;
304         struct wl_list button_binding_list;
305         struct wl_list axis_binding_list;
306         struct {
307                 struct weston_spring spring;
308                 struct weston_animation animation;
309                 struct weston_surface *surface;
310         } fade;
311
312         uint32_t state;
313         struct wl_event_source *idle_source;
314         uint32_t idle_inhibit;
315         int option_idle_time;           /* default timeout, s */
316         int idle_time;                  /* effective timeout, s */
317
318         /* Repaint state. */
319         struct wl_array vertices, indices;
320         pixman_region32_t damage;
321
322         uint32_t focus;
323
324         PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC
325                 image_target_renderbuffer_storage;
326         PFNGLEGLIMAGETARGETTEXTURE2DOESPROC image_target_texture_2d;
327         PFNEGLCREATEIMAGEKHRPROC create_image;
328         PFNEGLDESTROYIMAGEKHRPROC destroy_image;
329
330         int has_unpack_subimage;
331         GLenum read_format;
332
333         PFNEGLBINDWAYLANDDISPLAYWL bind_display;
334         PFNEGLUNBINDWAYLANDDISPLAYWL unbind_display;
335         int has_bind_display;
336
337         void (*destroy)(struct weston_compositor *ec);
338         int (*authenticate)(struct weston_compositor *c, uint32_t id);
339
340         void (*ping_handler)(struct weston_surface *surface, uint32_t serial);
341
342         int launcher_sock;
343
344         uint32_t output_id_pool;
345
346         struct xkb_rule_names xkb_names;
347         struct xkb_context *xkb_context;
348         struct weston_xkb_info xkb_info;
349 };
350
351 enum weston_output_flags {
352         WL_OUTPUT_FLIPPED = 0x01
353 };
354
355 struct weston_region {
356         struct wl_resource resource;
357         pixman_region32_t region;
358 };
359
360 /* Using weston_surface transformations
361  *
362  * To add a transformation to a surface, create a struct weston_transform, and
363  * add it to the list surface->geometry.transformation_list. Whenever you
364  * change the list, anything under surface->geometry, or anything in the
365  * weston_transforms linked into the list, you must set
366  * surface->geometry.dirty = 1.
367  *
368  * The order in the list defines the order of transformations. Let the list
369  * contain the transformation matrices M1, ..., Mn as head to tail. The
370  * transformation is applied to surface-local coordinate vector p as
371  *    P = Mn * ... * M2 * M1 * p
372  * to produce the global coordinate vector P. The total transform
373  *    Mn * ... * M2 * M1
374  * is cached in surface->transform.matrix, and the inverse of it in
375  * surface->transform.inverse.
376  *
377  * The list always contains surface->transform.position transformation, which
378  * is the translation by surface->geometry.x and y.
379  *
380  * If you want to apply a transformation in local coordinates, add your
381  * weston_transform to the head of the list. If you want to apply a
382  * transformation in global coordinates, add it to the tail of the list.
383  */
384
385 struct weston_surface {
386         struct wl_surface surface;
387         struct weston_compositor *compositor;
388         GLuint texture;
389         pixman_region32_t clip;
390         pixman_region32_t damage;
391         pixman_region32_t opaque;
392         pixman_region32_t input;
393         int32_t pitch;
394         struct wl_list link;
395         struct wl_list layer_link;
396         struct weston_shader *shader;
397         GLfloat color[4];
398         GLfloat opaque_rect[4];
399         GLfloat alpha;
400         int blend;
401
402         /* Surface geometry state, mutable.
403          * If you change anything, set dirty = 1.
404          * That includes the transformations referenced from the list.
405          */
406         struct {
407                 GLfloat x, y; /* surface translation on display */
408                 int32_t width, height;
409
410                 /* struct weston_transform */
411                 struct wl_list transformation_list;
412
413                 int dirty;
414         } geometry;
415
416         /* State derived from geometry state, read-only.
417          * This is updated by weston_surface_update_transform().
418          */
419         struct {
420                 pixman_region32_t boundingbox;
421                 pixman_region32_t opaque;
422
423                 /* matrix and inverse are used only if enabled = 1.
424                  * If enabled = 0, use x, y, width, height directly.
425                  */
426                 int enabled;
427                 struct weston_matrix matrix;
428                 struct weston_matrix inverse;
429
430                 struct weston_transform position; /* matrix from x, y */
431         } transform;
432
433         /*
434          * Which output to vsync this surface to.
435          * Used to determine, whether to send or queue frame events.
436          * Must be NULL, if 'link' is not in weston_compositor::surface_list.
437          */
438         struct weston_output *output;
439
440         /*
441          * A more complete representation of all outputs this surface is
442          * displayed on.
443          */
444         uint32_t output_mask;
445
446         struct wl_list frame_callback_list;
447
448         EGLImageKHR image;
449
450         struct wl_buffer *buffer;
451         struct wl_listener buffer_destroy_listener;
452
453         /*
454          * If non-NULL, this function will be called on surface::attach after
455          * a new buffer has been set up for this surface. The integer params
456          * are the sx and sy paramerters supplied to surface::attach .
457          */
458         void (*configure)(struct weston_surface *es, int32_t sx, int32_t sy);
459         void *private;
460 };
461
462 void
463 weston_surface_update_transform(struct weston_surface *surface);
464
465 void
466 weston_surface_to_global_fixed(struct weston_surface *surface,
467                                wl_fixed_t sx, wl_fixed_t sy,
468                                wl_fixed_t *x, wl_fixed_t *y);
469 void
470 weston_surface_to_global_float(struct weston_surface *surface,
471                                GLfloat sx, GLfloat sy, GLfloat *x, GLfloat *y);
472
473 void
474 weston_surface_from_global(struct weston_surface *surface,
475                            int32_t x, int32_t y, int32_t *sx, int32_t *sy);
476 void
477 weston_surface_from_global_fixed(struct weston_surface *surface,
478                                  wl_fixed_t x, wl_fixed_t y,
479                                  wl_fixed_t *sx, wl_fixed_t *sy);
480
481 void
482 weston_spring_init(struct weston_spring *spring,
483                    double k, double current, double target);
484 void
485 weston_spring_update(struct weston_spring *spring, uint32_t msec);
486 int
487 weston_spring_done(struct weston_spring *spring);
488
489 void
490 weston_surface_activate(struct weston_surface *surface,
491                         struct weston_seat *seat);
492 void
493 weston_surface_draw(struct weston_surface *es,
494                     struct weston_output *output, pixman_region32_t *damage);
495
496 void
497 notify_motion(struct wl_seat *seat, uint32_t time,
498               wl_fixed_t x, wl_fixed_t y);
499 void
500 notify_button(struct wl_seat *seat, uint32_t time, int32_t button,
501               enum wl_pointer_button_state state);
502 void
503 notify_axis(struct wl_seat *seat, uint32_t time, uint32_t axis,
504             wl_fixed_t value);
505 void
506 notify_key(struct wl_seat *seat, uint32_t time, uint32_t key,
507            enum wl_keyboard_key_state state);
508
509 void
510 notify_pointer_focus(struct wl_seat *seat, struct weston_output *output,
511                      wl_fixed_t x, wl_fixed_t y);
512
513 void
514 notify_keyboard_focus(struct wl_seat *seat, struct wl_array *keys);
515
516 void
517 notify_touch(struct wl_seat *seat, uint32_t time, int touch_id,
518              wl_fixed_t x, wl_fixed_t y, int touch_type);
519
520 void
521 weston_layer_init(struct weston_layer *layer, struct wl_list *below);
522
523 void
524 weston_output_finish_frame(struct weston_output *output, int msecs);
525 void
526 weston_output_damage(struct weston_output *output);
527 void
528 weston_output_do_read_pixels(struct weston_output *output);
529 void
530 weston_compositor_repick(struct weston_compositor *compositor);
531 void
532 weston_compositor_schedule_repaint(struct weston_compositor *compositor);
533 void
534 weston_compositor_fade(struct weston_compositor *compositor, float tint);
535 void
536 weston_compositor_damage_all(struct weston_compositor *compositor);
537 void
538 weston_compositor_unlock(struct weston_compositor *compositor);
539 void
540 weston_compositor_wake(struct weston_compositor *compositor);
541 void
542 weston_compositor_activity(struct weston_compositor *compositor);
543 void
544 weston_compositor_update_drag_surfaces(struct weston_compositor *compositor);
545
546
547 struct weston_binding;
548 typedef void (*weston_key_binding_handler_t)(struct wl_seat *seat,
549                                              uint32_t time, uint32_t key,
550                                              void *data);
551 struct weston_binding *
552 weston_compositor_add_key_binding(struct weston_compositor *compositor,
553                                   uint32_t key,
554                                   enum weston_keyboard_modifier modifier,
555                                   weston_key_binding_handler_t binding,
556                                   void *data);
557
558 typedef void (*weston_button_binding_handler_t)(struct wl_seat *seat,
559                                                 uint32_t time, uint32_t button,
560                                                 void *data);
561 struct weston_binding *
562 weston_compositor_add_button_binding(struct weston_compositor *compositor,
563                                      uint32_t button,
564                                      enum weston_keyboard_modifier modifier,
565                                      weston_button_binding_handler_t binding,
566                                      void *data);
567
568 typedef void (*weston_axis_binding_handler_t)(struct wl_seat *seat,
569                                               uint32_t time, uint32_t axis,
570                                               wl_fixed_t value, void *data);
571 struct weston_binding *
572 weston_compositor_add_axis_binding(struct weston_compositor *compositor,
573                                    uint32_t axis,
574                                    enum weston_keyboard_modifier modifier,
575                                    weston_axis_binding_handler_t binding,
576                                    void *data);
577 void
578 weston_binding_destroy(struct weston_binding *binding);
579
580 void
581 weston_binding_list_destroy_all(struct wl_list *list);
582
583 void
584 weston_compositor_run_key_binding(struct weston_compositor *compositor,
585                                   struct weston_seat *seat, uint32_t time,
586                                   uint32_t key,
587                                   enum wl_keyboard_key_state state);
588 void
589 weston_compositor_run_button_binding(struct weston_compositor *compositor,
590                                      struct weston_seat *seat, uint32_t time,
591                                      uint32_t button,
592                                      enum wl_pointer_button_state value);
593 void
594 weston_compositor_run_axis_binding(struct weston_compositor *compositor,
595                                    struct weston_seat *seat, uint32_t time,
596                                    uint32_t axis, int32_t value);
597
598 int
599 weston_environment_get_fd(const char *env);
600
601 struct wl_list *
602 weston_compositor_top(struct weston_compositor *compositor);
603
604 struct weston_surface *
605 weston_surface_create(struct weston_compositor *compositor);
606
607 void
608 weston_surface_configure(struct weston_surface *surface,
609                          GLfloat x, GLfloat y, int width, int height);
610
611 void
612 weston_surface_restack(struct weston_surface *surface, struct wl_list *below);
613
614 void
615 weston_surface_set_position(struct weston_surface *surface,
616                             GLfloat x, GLfloat y);
617
618 int
619 weston_surface_is_mapped(struct weston_surface *surface);
620
621 void
622 weston_surface_assign_output(struct weston_surface *surface);
623
624 void
625 weston_surface_damage(struct weston_surface *surface);
626
627 void
628 weston_surface_damage_below(struct weston_surface *surface);
629
630 void
631 weston_buffer_post_release(struct wl_buffer *buffer);
632
633 uint32_t
634 weston_compositor_get_time(void);
635
636 int
637 weston_compositor_init(struct weston_compositor *ec, struct wl_display *display,
638                        int argc, char *argv[], const char *config_file);
639 void
640 weston_compositor_shutdown(struct weston_compositor *ec);
641 void
642 weston_text_cursor_position_notify(struct weston_surface *surface,
643                                                 wl_fixed_t x, wl_fixed_t y);
644 void
645 weston_output_init_zoom(struct weston_output *output);
646 void
647 weston_output_update_zoom(struct weston_output *output, uint32_t type);
648 void
649 weston_output_update_matrix(struct weston_output *output);
650 void
651 weston_output_move(struct weston_output *output, int x, int y);
652 void
653 weston_output_init(struct weston_output *output, struct weston_compositor *c,
654                    int x, int y, int width, int height, uint32_t flags);
655 void
656 weston_output_destroy(struct weston_output *output);
657
658 void
659 weston_seat_init(struct weston_seat *seat, struct weston_compositor *ec);
660 void
661 weston_seat_init_pointer(struct weston_seat *seat);
662 void
663 weston_seat_init_keyboard(struct weston_seat *seat, struct xkb_keymap *keymap);
664 void
665 weston_seat_init_touch(struct weston_seat *seat);
666
667 void
668 weston_seat_release(struct weston_seat *seat);
669
670 enum {
671         TTY_ENTER_VT,
672         TTY_LEAVE_VT
673 };
674
675 typedef void (*tty_vt_func_t)(struct weston_compositor *compositor, int event);
676
677 struct tty *
678 tty_create(struct weston_compositor *compositor,
679            tty_vt_func_t vt_func, int tty_nr);
680
681 void
682 tty_destroy(struct tty *tty);
683
684 int
685 tty_activate_vt(struct tty *tty, int vt);
686
687 void
688 screenshooter_create(struct weston_compositor *ec);
689
690 struct clipboard *
691 clipboard_create(struct weston_seat *seat);
692
693 void
694 text_cursor_position_notifier_create(struct weston_compositor *ec);
695
696 struct weston_process;
697 typedef void (*weston_process_cleanup_func_t)(struct weston_process *process,
698                                             int status);
699
700 struct weston_process {
701         pid_t pid;
702         weston_process_cleanup_func_t cleanup;
703         struct wl_list link;
704 };
705
706 struct wl_client *
707 weston_client_launch(struct weston_compositor *compositor,
708                      struct weston_process *proc,
709                      const char *path,
710                      weston_process_cleanup_func_t cleanup);
711
712 void
713 weston_watch_process(struct weston_process *process);
714
715 int
716 weston_xserver_init(struct weston_compositor *compositor);
717
718 struct weston_zoom;
719 typedef void (*weston_zoom_done_func_t)(struct weston_zoom *zoom, void *data);
720
721 struct weston_zoom *
722 weston_zoom_run(struct weston_surface *surface, GLfloat start, GLfloat stop,
723                 weston_zoom_done_func_t done, void *data);
724
725 struct weston_fade;
726 typedef void (*weston_fade_done_func_t)(struct weston_fade *fade, void *data);
727
728 struct weston_fade *
729 weston_fade_run(struct weston_surface *surface,
730                 weston_fade_done_func_t done, void *data);
731
732
733 void
734 weston_surface_set_color(struct weston_surface *surface,
735                          GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
736
737 void
738 weston_surface_destroy(struct weston_surface *surface);
739
740 struct weston_compositor *
741 backend_init(struct wl_display *display, int argc, char *argv[],
742              const char *config_file);
743
744 int
745 weston_output_switch_mode(struct weston_output *output, struct weston_mode *mode);
746
747 #endif