compositor: Emit frame_signal from weston_output_do_read_pixels()
[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         uint32_t frame_time;
176
177         char *make, *model;
178         uint32_t subpixel;
179         
180         struct weston_mode *current;
181         struct weston_mode *origin;
182         struct wl_list mode_list;
183
184         void (*repaint)(struct weston_output *output,
185                         pixman_region32_t *damage);
186         void (*destroy)(struct weston_output *output);
187         void (*assign_planes)(struct weston_output *output);
188         int (*switch_mode)(struct weston_output *output, struct weston_mode *mode);
189
190         /* backlight values are on 0-255 range, where higher is brighter */
191         uint32_t backlight_current;
192         void (*set_backlight)(struct weston_output *output, uint32_t value);
193         void (*set_dpms)(struct weston_output *output, enum dpms_enum level);
194 };
195
196 struct weston_xkb_info {
197         struct xkb_keymap *keymap;
198         int keymap_fd;
199         size_t keymap_size;
200         char *keymap_area;
201         xkb_mod_index_t ctrl_mod;
202         xkb_mod_index_t alt_mod;
203         xkb_mod_index_t super_mod;
204         xkb_led_index_t num_led;
205         xkb_led_index_t caps_led;
206         xkb_led_index_t scroll_led;
207 };
208
209 struct weston_seat {
210         struct wl_seat seat;
211         struct wl_pointer pointer;
212         int has_pointer;
213         struct wl_keyboard keyboard;
214         int has_keyboard;
215         struct wl_touch touch;
216         int has_touch;
217
218         struct weston_compositor *compositor;
219         struct weston_surface *sprite;
220         struct wl_listener sprite_destroy_listener;
221         struct weston_surface *drag_surface;
222         struct wl_listener drag_surface_destroy_listener;
223         int32_t hotspot_x, hotspot_y;
224         struct wl_list link;
225         enum weston_keyboard_modifier modifier_state;
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 enum {
386         WESTON_PLANE_PRIMARY
387 };
388
389 struct weston_surface {
390         struct wl_surface surface;
391         struct weston_compositor *compositor;
392         GLuint texture;
393         pixman_region32_t clip;
394         pixman_region32_t damage;
395         pixman_region32_t opaque;
396         pixman_region32_t input;
397         int32_t pitch;
398         struct wl_list link;
399         struct wl_list layer_link;
400         struct weston_shader *shader;
401         GLfloat color[4];
402         GLfloat opaque_rect[4];
403         GLfloat alpha;
404         int blend;
405         int plane;
406
407         /* Surface geometry state, mutable.
408          * If you change anything, set dirty = 1.
409          * That includes the transformations referenced from the list.
410          */
411         struct {
412                 GLfloat x, y; /* surface translation on display */
413                 int32_t width, height;
414
415                 /* struct weston_transform */
416                 struct wl_list transformation_list;
417
418                 int dirty;
419         } geometry;
420
421         /* State derived from geometry state, read-only.
422          * This is updated by weston_surface_update_transform().
423          */
424         struct {
425                 pixman_region32_t boundingbox;
426                 pixman_region32_t opaque;
427
428                 /* matrix and inverse are used only if enabled = 1.
429                  * If enabled = 0, use x, y, width, height directly.
430                  */
431                 int enabled;
432                 struct weston_matrix matrix;
433                 struct weston_matrix inverse;
434
435                 struct weston_transform position; /* matrix from x, y */
436         } transform;
437
438         /*
439          * Which output to vsync this surface to.
440          * Used to determine, whether to send or queue frame events.
441          * Must be NULL, if 'link' is not in weston_compositor::surface_list.
442          */
443         struct weston_output *output;
444
445         /*
446          * A more complete representation of all outputs this surface is
447          * displayed on.
448          */
449         uint32_t output_mask;
450
451         struct wl_list frame_callback_list;
452
453         EGLImageKHR image;
454
455         struct wl_buffer *buffer;
456         struct wl_listener buffer_destroy_listener;
457
458         /*
459          * If non-NULL, this function will be called on surface::attach after
460          * a new buffer has been set up for this surface. The integer params
461          * are the sx and sy paramerters supplied to surface::attach .
462          */
463         void (*configure)(struct weston_surface *es, int32_t sx, int32_t sy);
464         void *private;
465 };
466
467 void
468 weston_surface_update_transform(struct weston_surface *surface);
469
470 void
471 weston_surface_to_global_fixed(struct weston_surface *surface,
472                                wl_fixed_t sx, wl_fixed_t sy,
473                                wl_fixed_t *x, wl_fixed_t *y);
474 void
475 weston_surface_to_global_float(struct weston_surface *surface,
476                                GLfloat sx, GLfloat sy, GLfloat *x, GLfloat *y);
477
478 void
479 weston_surface_from_global(struct weston_surface *surface,
480                            int32_t x, int32_t y, int32_t *sx, int32_t *sy);
481 void
482 weston_surface_from_global_fixed(struct weston_surface *surface,
483                                  wl_fixed_t x, wl_fixed_t y,
484                                  wl_fixed_t *sx, wl_fixed_t *sy);
485
486 void
487 weston_spring_init(struct weston_spring *spring,
488                    double k, double current, double target);
489 void
490 weston_spring_update(struct weston_spring *spring, uint32_t msec);
491 int
492 weston_spring_done(struct weston_spring *spring);
493
494 void
495 weston_surface_activate(struct weston_surface *surface,
496                         struct weston_seat *seat);
497 void
498 weston_surface_draw(struct weston_surface *es,
499                     struct weston_output *output, pixman_region32_t *damage);
500
501 void
502 notify_motion(struct wl_seat *seat, uint32_t time,
503               wl_fixed_t x, wl_fixed_t y);
504 void
505 notify_button(struct wl_seat *seat, uint32_t time, int32_t button,
506               enum wl_pointer_button_state state);
507 void
508 notify_axis(struct wl_seat *seat, uint32_t time, uint32_t axis,
509             wl_fixed_t value);
510 void
511 notify_key(struct wl_seat *seat, uint32_t time, uint32_t key,
512            enum wl_keyboard_key_state state);
513
514 void
515 notify_pointer_focus(struct wl_seat *seat, struct weston_output *output,
516                      wl_fixed_t x, wl_fixed_t y);
517
518 void
519 notify_keyboard_focus(struct wl_seat *seat, struct wl_array *keys);
520
521 void
522 notify_touch(struct wl_seat *seat, uint32_t time, int touch_id,
523              wl_fixed_t x, wl_fixed_t y, int touch_type);
524
525 void
526 weston_layer_init(struct weston_layer *layer, struct wl_list *below);
527
528 void
529 weston_output_finish_frame(struct weston_output *output, int msecs);
530 void
531 weston_output_damage(struct weston_output *output);
532 void
533 weston_output_do_read_pixels(struct weston_output *output);
534 void
535 weston_compositor_schedule_repaint(struct weston_compositor *compositor);
536 void
537 weston_compositor_fade(struct weston_compositor *compositor, float tint);
538 void
539 weston_compositor_damage_all(struct weston_compositor *compositor);
540 void
541 weston_compositor_unlock(struct weston_compositor *compositor);
542 void
543 weston_compositor_wake(struct weston_compositor *compositor);
544 void
545 weston_compositor_activity(struct weston_compositor *compositor);
546 void
547 weston_compositor_update_drag_surfaces(struct weston_compositor *compositor);
548
549
550 struct weston_binding;
551 typedef void (*weston_key_binding_handler_t)(struct wl_seat *seat,
552                                              uint32_t time, uint32_t key,
553                                              void *data);
554 struct weston_binding *
555 weston_compositor_add_key_binding(struct weston_compositor *compositor,
556                                   uint32_t key,
557                                   enum weston_keyboard_modifier modifier,
558                                   weston_key_binding_handler_t binding,
559                                   void *data);
560
561 typedef void (*weston_button_binding_handler_t)(struct wl_seat *seat,
562                                                 uint32_t time, uint32_t button,
563                                                 void *data);
564 struct weston_binding *
565 weston_compositor_add_button_binding(struct weston_compositor *compositor,
566                                      uint32_t button,
567                                      enum weston_keyboard_modifier modifier,
568                                      weston_button_binding_handler_t binding,
569                                      void *data);
570
571 typedef void (*weston_axis_binding_handler_t)(struct wl_seat *seat,
572                                               uint32_t time, uint32_t axis,
573                                               wl_fixed_t value, void *data);
574 struct weston_binding *
575 weston_compositor_add_axis_binding(struct weston_compositor *compositor,
576                                    uint32_t axis,
577                                    enum weston_keyboard_modifier modifier,
578                                    weston_axis_binding_handler_t binding,
579                                    void *data);
580 void
581 weston_binding_destroy(struct weston_binding *binding);
582
583 void
584 weston_binding_list_destroy_all(struct wl_list *list);
585
586 void
587 weston_compositor_run_key_binding(struct weston_compositor *compositor,
588                                   struct weston_seat *seat, uint32_t time,
589                                   uint32_t key,
590                                   enum wl_keyboard_key_state state);
591 void
592 weston_compositor_run_button_binding(struct weston_compositor *compositor,
593                                      struct weston_seat *seat, uint32_t time,
594                                      uint32_t button,
595                                      enum wl_pointer_button_state value);
596 void
597 weston_compositor_run_axis_binding(struct weston_compositor *compositor,
598                                    struct weston_seat *seat, uint32_t time,
599                                    uint32_t axis, int32_t value);
600
601 int
602 weston_environment_get_fd(const char *env);
603
604 struct wl_list *
605 weston_compositor_top(struct weston_compositor *compositor);
606
607 struct weston_surface *
608 weston_surface_create(struct weston_compositor *compositor);
609
610 void
611 weston_surface_configure(struct weston_surface *surface,
612                          GLfloat x, GLfloat y, int width, int height);
613
614 void
615 weston_surface_restack(struct weston_surface *surface, struct wl_list *below);
616
617 void
618 weston_surface_set_position(struct weston_surface *surface,
619                             GLfloat x, GLfloat y);
620
621 int
622 weston_surface_is_mapped(struct weston_surface *surface);
623
624 void
625 weston_surface_assign_output(struct weston_surface *surface);
626
627 void
628 weston_surface_damage(struct weston_surface *surface);
629
630 void
631 weston_surface_damage_below(struct weston_surface *surface);
632
633 void
634 weston_buffer_post_release(struct wl_buffer *buffer);
635
636 uint32_t
637 weston_compositor_get_time(void);
638
639 int
640 weston_compositor_init(struct weston_compositor *ec, struct wl_display *display,
641                        int argc, char *argv[], const char *config_file);
642 void
643 weston_compositor_shutdown(struct weston_compositor *ec);
644 void
645 weston_text_cursor_position_notify(struct weston_surface *surface,
646                                                 wl_fixed_t x, wl_fixed_t y);
647 void
648 weston_output_init_zoom(struct weston_output *output);
649 void
650 weston_output_update_zoom(struct weston_output *output, uint32_t type);
651 void
652 weston_output_update_matrix(struct weston_output *output);
653 void
654 weston_output_move(struct weston_output *output, int x, int y);
655 void
656 weston_output_init(struct weston_output *output, struct weston_compositor *c,
657                    int x, int y, int width, int height, uint32_t flags);
658 void
659 weston_output_destroy(struct weston_output *output);
660
661 void
662 weston_seat_init(struct weston_seat *seat, struct weston_compositor *ec);
663 void
664 weston_seat_init_pointer(struct weston_seat *seat);
665 void
666 weston_seat_init_keyboard(struct weston_seat *seat, struct xkb_keymap *keymap);
667 void
668 weston_seat_init_touch(struct weston_seat *seat);
669
670 void
671 weston_seat_release(struct weston_seat *seat);
672
673 enum {
674         TTY_ENTER_VT,
675         TTY_LEAVE_VT
676 };
677
678 typedef void (*tty_vt_func_t)(struct weston_compositor *compositor, int event);
679
680 struct tty *
681 tty_create(struct weston_compositor *compositor,
682            tty_vt_func_t vt_func, int tty_nr);
683
684 void
685 tty_destroy(struct tty *tty);
686
687 int
688 tty_activate_vt(struct tty *tty, int vt);
689
690 void
691 screenshooter_create(struct weston_compositor *ec);
692
693 struct clipboard *
694 clipboard_create(struct weston_seat *seat);
695
696 void
697 text_cursor_position_notifier_create(struct weston_compositor *ec);
698
699 struct weston_process;
700 typedef void (*weston_process_cleanup_func_t)(struct weston_process *process,
701                                             int status);
702
703 struct weston_process {
704         pid_t pid;
705         weston_process_cleanup_func_t cleanup;
706         struct wl_list link;
707 };
708
709 struct wl_client *
710 weston_client_launch(struct weston_compositor *compositor,
711                      struct weston_process *proc,
712                      const char *path,
713                      weston_process_cleanup_func_t cleanup);
714
715 void
716 weston_watch_process(struct weston_process *process);
717
718 int
719 weston_xserver_init(struct weston_compositor *compositor);
720
721 struct weston_zoom;
722 typedef void (*weston_zoom_done_func_t)(struct weston_zoom *zoom, void *data);
723
724 struct weston_zoom *
725 weston_zoom_run(struct weston_surface *surface, GLfloat start, GLfloat stop,
726                 weston_zoom_done_func_t done, void *data);
727
728 struct weston_fade;
729 typedef void (*weston_fade_done_func_t)(struct weston_fade *fade, void *data);
730
731 struct weston_fade *
732 weston_fade_run(struct weston_surface *surface,
733                 weston_fade_done_func_t done, void *data);
734
735
736 void
737 weston_surface_set_color(struct weston_surface *surface,
738                          GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
739
740 void
741 weston_surface_destroy(struct weston_surface *surface);
742
743 struct weston_compositor *
744 backend_init(struct wl_display *display, int argc, char *argv[],
745              const char *config_file);
746
747 int
748 weston_output_switch_mode(struct weston_output *output, struct weston_mode *mode);
749
750 #endif