blob: 08306b9353638f7e9d488972edc6c4e99a22f92b [file] [log] [blame]
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001/*
Kristian Høgsberg96aa7da2011-09-15 15:43:14 -04002 * Copyright © 2008-2011 Kristian Høgsberg
3 * Copyright © 2010-2011 Intel Corporation
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04004 *
Kristian Høgsberg96aa7da2011-09-15 15:43:14 -04005 * 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.
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040014 *
Kristian Høgsberg96aa7da2011-09-15 15:43:14 -040015 * 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.
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040022 */
23
Chia-I Wu1b6c0ed2010-10-29 15:20:18 +080024#ifdef HAVE_CONFIG_H
25#include <config.h>
26#endif
27
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040028#include <stddef.h>
29#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
32#include <fcntl.h>
33#include <unistd.h>
34#include <errno.h>
35#include <sys/time.h>
Kristian Høgsbergf9112b22010-06-14 12:53:43 -040036#include <linux/input.h>
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040037
38#include <xcb/xcb.h>
Benjamin Franzke3b288af2011-02-20 19:58:42 +010039#include <X11/Xlib.h>
40#include <X11/Xlib-xcb.h>
41
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040042#include <GLES2/gl2.h>
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040043#include <EGL/egl.h>
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040044
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040045#include "compositor.h"
46
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040047struct x11_compositor {
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050048 struct weston_compositor base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040049
Benjamin Franzke3b288af2011-02-20 19:58:42 +010050 Display *dpy;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040051 xcb_connection_t *conn;
52 xcb_screen_t *screen;
53 xcb_cursor_t null_cursor;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -050054 struct wl_array keys;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040055 struct wl_event_source *xcb_source;
56 struct {
57 xcb_atom_t wm_protocols;
58 xcb_atom_t wm_normal_hints;
59 xcb_atom_t wm_size_hints;
60 xcb_atom_t wm_delete_window;
Kristian Høgsberg24ed6212011-01-26 14:02:31 -050061 xcb_atom_t wm_class;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040062 xcb_atom_t net_wm_name;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -050063 xcb_atom_t net_wm_icon;
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -040064 xcb_atom_t net_wm_state;
65 xcb_atom_t net_wm_state_fullscreen;
Kristian Høgsberg24ed6212011-01-26 14:02:31 -050066 xcb_atom_t string;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040067 xcb_atom_t utf8_string;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -050068 xcb_atom_t cardinal;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040069 } atom;
70};
71
72struct x11_output {
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050073 struct weston_output base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040074
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040075 xcb_window_t window;
Benjamin Franzke84290d02011-03-02 10:07:59 +010076 EGLSurface egl_surface;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050077 struct weston_mode mode;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -040078 struct wl_event_source *finish_frame_timer;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040079};
80
81struct x11_input {
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050082 struct weston_input_device base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040083};
84
85
Darxus55973f22010-11-22 21:24:39 -050086static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040087x11_input_create(struct x11_compositor *c)
88{
89 struct x11_input *input;
90
91 input = malloc(sizeof *input);
92 if (input == NULL)
Darxus55973f22010-11-22 21:24:39 -050093 return -1;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040094
95 memset(input, 0, sizeof *input);
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050096 weston_input_device_init(&input->base, &c->base);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040097
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -050098 c->base.input_device = &input->base.input_device;
Darxus55973f22010-11-22 21:24:39 -050099
100 return 0;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400101}
102
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200103static void
104x11_input_destroy(struct x11_compositor *compositor)
105{
106 struct x11_input *input = container_of(compositor->base.input_device,
107 struct x11_input,
108 base.input_device);
109
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500110 weston_input_device_release(&input->base);
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200111 free(input);
112}
113
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400114static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400115x11_compositor_init_egl(struct x11_compositor *c)
116{
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400117 EGLint major, minor;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100118 EGLint n;
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400119 const char *extensions;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100120 EGLint config_attribs[] = {
121 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
122 EGL_RED_SIZE, 1,
123 EGL_GREEN_SIZE, 1,
124 EGL_BLUE_SIZE, 1,
125 EGL_DEPTH_SIZE, 1,
126 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
127 EGL_NONE
128 };
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400129 static const EGLint context_attribs[] = {
130 EGL_CONTEXT_CLIENT_VERSION, 2,
131 EGL_NONE
132 };
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400133
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100134 c->base.display = eglGetDisplay(c->dpy);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400135 if (c->base.display == NULL) {
136 fprintf(stderr, "failed to create display\n");
137 return -1;
138 }
139
140 if (!eglInitialize(c->base.display, &major, &minor)) {
141 fprintf(stderr, "failed to initialize display\n");
142 return -1;
143 }
144
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400145 extensions = eglQueryString(c->base.display, EGL_EXTENSIONS);
Ander Conselvan de Oliveiraef7c8d92011-11-01 16:37:41 +0200146 if (!strstr(extensions, "EGL_KHR_surfaceless_gles2")) {
147 fprintf(stderr, "EGL_KHR_surfaceless_gles2 not available\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400148 return -1;
149 }
150
Darxus55973f22010-11-22 21:24:39 -0500151 if (!eglBindAPI(EGL_OPENGL_ES_API)) {
152 fprintf(stderr, "failed to bind EGL_OPENGL_ES_API\n");
153 return -1;
154 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100155 if (!eglChooseConfig(c->base.display, config_attribs,
156 &c->base.config, 1, &n) || n == 0) {
157 fprintf(stderr, "failed to choose config: %d\n", n);
158 return -1;
159 }
Darxus55973f22010-11-22 21:24:39 -0500160
Benjamin Franzke84290d02011-03-02 10:07:59 +0100161 c->base.context = eglCreateContext(c->base.display, c->base.config,
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400162 EGL_NO_CONTEXT, context_attribs);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400163 if (c->base.context == NULL) {
164 fprintf(stderr, "failed to create context\n");
165 return -1;
166 }
167
168 if (!eglMakeCurrent(c->base.display, EGL_NO_SURFACE,
169 EGL_NO_SURFACE, c->base.context)) {
170 fprintf(stderr, "failed to make context current\n");
171 return -1;
172 }
173
174 return 0;
175}
176
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200177static void
178x11_compositor_fini_egl(struct x11_compositor *compositor)
179{
180 eglMakeCurrent(compositor->base.display,
181 EGL_NO_SURFACE, EGL_NO_SURFACE,
182 EGL_NO_CONTEXT);
183
184 eglTerminate(compositor->base.display);
185 eglReleaseThread();
186}
187
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500188static void
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500189x11_output_repaint(struct weston_output *output_base)
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500190{
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500191 struct x11_output *output = (struct x11_output *)output_base;
192 struct x11_compositor *compositor =
193 (struct x11_compositor *)output->base.compositor;
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500194 struct weston_surface *surface;
195
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500196 if (!eglMakeCurrent(compositor->base.display, output->egl_surface,
197 output->egl_surface, compositor->base.context)) {
198 fprintf(stderr, "failed to make current\n");
199 return;
200 }
201
202 wl_list_for_each_reverse(surface, &compositor->base.surface_list, link)
203 weston_surface_draw(surface, &output->base);
204
205 eglSwapBuffers(compositor->base.display, output->egl_surface);
206
207 wl_event_source_timer_update(output->finish_frame_timer, 10);
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500208}
209
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100210static int
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400211finish_frame_handler(void *data)
212{
213 struct x11_output *output = data;
214 uint32_t msec;
215 struct timeval tv;
216
217 gettimeofday(&tv, NULL);
218 msec = tv.tv_sec * 1000 + tv.tv_usec / 1000;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500219 weston_output_finish_frame(&output->base, msec);
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400220
221 return 1;
222}
223
224static int
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500225x11_output_prepare_scanout_surface(struct weston_output *output_base,
226 struct weston_surface *es)
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200227{
Benjamin Franzke66aa2352011-04-20 17:06:13 +0200228 return -1;
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200229}
230
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200231static int
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500232x11_output_set_cursor(struct weston_output *output_base,
233 struct weston_input_device *input)
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200234{
235 return -1;
236}
237
Matt Roper361d2ad2011-08-29 13:52:23 -0700238static void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500239x11_output_destroy(struct weston_output *output_base)
Matt Roper361d2ad2011-08-29 13:52:23 -0700240{
Pekka Paalanen2de99e22012-01-03 11:51:03 +0200241 struct x11_output *output = (struct x11_output *)output_base;
242 struct x11_compositor *compositor =
243 (struct x11_compositor *)output->base.compositor;
244
245 wl_list_remove(&output->base.link);
246 wl_event_source_remove(output->finish_frame_timer);
247
248 eglDestroySurface(compositor->base.display, output->egl_surface);
249
250 xcb_destroy_window(compositor->conn, output->window);
251
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500252 weston_output_destroy(&output->base);
Pekka Paalanen2de99e22012-01-03 11:51:03 +0200253
254 free(output);
Matt Roper361d2ad2011-08-29 13:52:23 -0700255}
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200256
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400257static void
258x11_output_set_wm_protocols(struct x11_output *output)
259{
260 xcb_atom_t list[1];
261 struct x11_compositor *c =
262 (struct x11_compositor *) output->base.compositor;
263
264 list[0] = c->atom.wm_delete_window;
265 xcb_change_property (c->conn,
266 XCB_PROP_MODE_REPLACE,
267 output->window,
268 c->atom.wm_protocols,
269 XCB_ATOM_ATOM,
270 32,
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500271 ARRAY_LENGTH(list),
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400272 list);
273}
274
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400275static void
276x11_output_change_state(struct x11_output *output, int add, xcb_atom_t state)
277{
278 xcb_client_message_event_t event;
279 struct x11_compositor *c =
280 (struct x11_compositor *) output->base.compositor;
281 xcb_screen_iterator_t iter;
282
283#define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
284#define _NET_WM_STATE_ADD 1 /* add/set property */
285#define _NET_WM_STATE_TOGGLE 2 /* toggle property */
286
287 memset(&event, 0, sizeof event);
288 event.response_type = XCB_CLIENT_MESSAGE;
289 event.format = 32;
290 event.window = output->window;
291 event.type = c->atom.net_wm_state;
292
293 event.data.data32[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
294 event.data.data32[1] = state;
295 event.data.data32[2] = 0;
296 event.data.data32[3] = 0;
297 event.data.data32[4] = 0;
298
299 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
300 xcb_send_event(c->conn, 0, iter.data->root,
301 XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY |
302 XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT,
303 (void *) &event);
304}
305
306
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400307struct wm_normal_hints {
308 uint32_t flags;
309 uint32_t pad[4];
310 int32_t min_width, min_height;
311 int32_t max_width, max_height;
312 int32_t width_inc, height_inc;
313 int32_t min_aspect_x, min_aspect_y;
314 int32_t max_aspect_x, max_aspect_y;
315 int32_t base_width, base_height;
316 int32_t win_gravity;
317};
318
319#define WM_NORMAL_HINTS_MIN_SIZE 16
320#define WM_NORMAL_HINTS_MAX_SIZE 32
321
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500322static void
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400323x11_output_set_icon(struct x11_compositor *c,
324 struct x11_output *output, const char *filename)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500325{
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400326 uint32_t *icon, *pixels, stride;
327 int32_t width, height;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500328
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500329 pixels = weston_load_image(filename, &width, &height, &stride);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500330 if (!pixels)
331 return;
332 icon = malloc(width * height * 4 + 8);
333 if (!icon) {
334 free(pixels);
335 return;
336 }
337
338 icon[0] = width;
339 icon[1] = height;
340 memcpy(icon + 2, pixels, width * height * 4);
341 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
342 c->atom.net_wm_icon, c->atom.cardinal, 32,
343 width * height + 2, icon);
344 free(icon);
345 free(pixels);
346}
347
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400348static int
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700349x11_compositor_create_output(struct x11_compositor *c, int x, int y,
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400350 int width, int height, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400351{
Kristian Høgsberg86000402012-01-03 23:24:14 -0500352 static const char name[] = "Weston Compositor";
353 static const char class[] = "weston-1\0Weston Compositor";
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400354 struct x11_output *output;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400355 xcb_screen_iterator_t iter;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400356 struct wm_normal_hints normal_hints;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400357 struct wl_event_loop *loop;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400358 uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_CURSOR;
359 uint32_t values[2] = {
360 XCB_EVENT_MASK_KEY_PRESS |
361 XCB_EVENT_MASK_KEY_RELEASE |
362 XCB_EVENT_MASK_BUTTON_PRESS |
363 XCB_EVENT_MASK_BUTTON_RELEASE |
364 XCB_EVENT_MASK_POINTER_MOTION |
365 XCB_EVENT_MASK_EXPOSURE |
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400366 XCB_EVENT_MASK_STRUCTURE_NOTIFY |
367 XCB_EVENT_MASK_ENTER_WINDOW |
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500368 XCB_EVENT_MASK_LEAVE_WINDOW |
369 XCB_EVENT_MASK_KEYMAP_STATE |
370 XCB_EVENT_MASK_FOCUS_CHANGE,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400371 0
372 };
373
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400374 output = malloc(sizeof *output);
375 if (output == NULL)
376 return -1;
377
378 memset(output, 0, sizeof *output);
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -0400379
380 output->mode.flags =
381 WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
382 output->mode.width = width;
383 output->mode.height = height;
384 output->mode.refresh = 60;
385 wl_list_init(&output->base.mode_list);
386 wl_list_insert(&output->base.mode_list, &output->mode.link);
387
388 output->base.current = &output->mode;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500389 weston_output_init(&output->base, &c->base, x, y, width, height,
Benjamin Franzke84290d02011-03-02 10:07:59 +0100390 WL_OUTPUT_FLIPPED);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400391
392 values[1] = c->null_cursor;
393 output->window = xcb_generate_id(c->conn);
394 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
395 xcb_create_window(c->conn,
396 XCB_COPY_FROM_PARENT,
397 output->window,
398 iter.data->root,
399 0, 0,
400 width, height,
401 0,
402 XCB_WINDOW_CLASS_INPUT_OUTPUT,
403 iter.data->root_visual,
404 mask, values);
405
406 /* Don't resize me. */
407 memset(&normal_hints, 0, sizeof normal_hints);
408 normal_hints.flags =
409 WM_NORMAL_HINTS_MAX_SIZE | WM_NORMAL_HINTS_MIN_SIZE;
410 normal_hints.min_width = width;
411 normal_hints.min_height = height;
412 normal_hints.max_width = width;
413 normal_hints.max_height = height;
414 xcb_change_property (c->conn, XCB_PROP_MODE_REPLACE, output->window,
415 c->atom.wm_normal_hints,
416 c->atom.wm_size_hints, 32,
417 sizeof normal_hints / 4,
418 (uint8_t *) &normal_hints);
419
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400420 /* Set window name. Don't bother with non-EWMH WMs. */
421 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
422 c->atom.net_wm_name, c->atom.utf8_string, 8,
423 strlen(name), name);
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500424 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
425 c->atom.wm_class, c->atom.string, 8,
426 sizeof class, class);
427
Kristian Høgsberg86000402012-01-03 23:24:14 -0500428 x11_output_set_icon(c, output, DATADIR "/weston/wayland.png");
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500429
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500430 xcb_map_window(c->conn, output->window);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400431
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400432 x11_output_set_wm_protocols(output);
433
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400434 if (fullscreen)
435 x11_output_change_state(output, 1,
436 c->atom.net_wm_state_fullscreen);
437
Benjamin Franzke84290d02011-03-02 10:07:59 +0100438 output->egl_surface =
439 eglCreateWindowSurface(c->base.display, c->base.config,
440 output->window, NULL);
441 if (!output->egl_surface) {
442 fprintf(stderr, "failed to create window surface\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400443 return -1;
444 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100445 if (!eglMakeCurrent(c->base.display, output->egl_surface,
446 output->egl_surface, c->base.context)) {
447 fprintf(stderr, "failed to make surface current\n");
448 return -1;
449 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400450
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400451 loop = wl_display_get_event_loop(c->base.wl_display);
452 output->finish_frame_timer =
453 wl_event_loop_add_timer(loop, finish_frame_handler, output);
454
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500455 output->base.repaint = x11_output_repaint;
Benjamin Franzke66aa2352011-04-20 17:06:13 +0200456 output->base.prepare_scanout_surface =
457 x11_output_prepare_scanout_surface;
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200458 output->base.set_hardware_cursor = x11_output_set_cursor;
Matt Roper361d2ad2011-08-29 13:52:23 -0700459 output->base.destroy = x11_output_destroy;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100460
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400461 wl_list_insert(c->base.output_list.prev, &output->base.link);
462
463 return 0;
464}
465
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400466static struct x11_output *
467x11_compositor_find_output(struct x11_compositor *c, xcb_window_t window)
468{
469 struct x11_output *output;
470
471 wl_list_for_each(output, &c->base.output_list, base.link) {
472 if (output->window == window)
473 return output;
474 }
475
476 return NULL;
477}
478
Tiago Vignattia3a71622011-12-08 17:03:17 +0200479static void
480x11_compositor_deliver_button_event(struct x11_compositor *c,
481 xcb_generic_event_t *event, int state)
482{
483 xcb_button_press_event_t *button_event =
484 (xcb_button_press_event_t *) event;
485 int button;
486
487 switch (button_event->detail) {
488 default:
489 button = button_event->detail + BTN_LEFT - 1;
490 break;
491 case 2:
492 button = BTN_MIDDLE;
493 break;
494 case 3:
495 button = BTN_RIGHT;
496 break;
497 case 4:
498 case 5:
499 case 6:
500 case 7:
501 /* X11 sends wheel events as buttons events. But
502 * linux input treats as REL_WHEEL, therefore not
503 * button type at all. When we update the input
504 * protocol and get the 'axis' event, we'll send
505 * scroll events as axis events. */
506 return;
507 }
508
509 notify_button(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500510 weston_compositor_get_time(), button, state);
Tiago Vignattia3a71622011-12-08 17:03:17 +0200511}
512
Kristian Høgsbergee724822011-04-21 14:51:44 -0400513static int
514x11_compositor_next_event(struct x11_compositor *c,
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400515 xcb_generic_event_t **event, uint32_t mask)
Kristian Høgsbergee724822011-04-21 14:51:44 -0400516{
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400517 if (mask & WL_EVENT_READABLE) {
518 *event = xcb_poll_for_event(c->conn);
Kristian Høgsbergee724822011-04-21 14:51:44 -0400519 } else {
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400520#ifdef HAVE_XCB_POLL_FOR_QUEUED_EVENT
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400521 *event = xcb_poll_for_queued_event(c->conn);
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400522#else
523 *event = xcb_poll_for_event(c->conn);
524#endif
Kristian Høgsbergee724822011-04-21 14:51:44 -0400525 }
526
527 return *event != NULL;
528}
529
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400530static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400531x11_compositor_handle_event(int fd, uint32_t mask, void *data)
532{
533 struct x11_compositor *c = data;
534 struct x11_output *output;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400535 xcb_generic_event_t *event, *prev;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400536 xcb_client_message_event_t *client_message;
537 xcb_motion_notify_event_t *motion_notify;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500538 xcb_enter_notify_event_t *enter_notify;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400539 xcb_key_press_event_t *key_press, *key_release;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500540 xcb_keymap_notify_event_t *keymap_notify;
541 xcb_focus_in_event_t *focus_in;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400542 xcb_atom_t atom;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500543 uint32_t *k;
544 int i, set;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400545
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400546 prev = NULL;
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400547 while (x11_compositor_next_event(c, &event, mask)) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400548 switch (prev ? prev->response_type & ~0x80 : 0x80) {
549 case XCB_KEY_RELEASE:
550 key_release = (xcb_key_press_event_t *) prev;
551 key_press = (xcb_key_press_event_t *) event;
552 if ((event->response_type & ~0x80) == XCB_KEY_PRESS &&
Dima Ryazanovc2247482011-08-16 17:25:32 -0700553 key_release->time == key_press->time &&
554 key_release->detail == key_press->detail) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400555 /* Don't deliver the held key release
556 * event or the new key press event. */
557 free(event);
558 free(prev);
559 prev = NULL;
560 continue;
561 } else {
562 /* Deliver the held key release now
563 * and fall through and handle the new
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400564 * event below. */
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400565 notify_key(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500566 weston_compositor_get_time(),
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400567 key_release->detail - 8, 0);
568 free(prev);
569 prev = NULL;
570 break;
571 }
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400572
573 case XCB_FOCUS_IN:
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400574 /* assert event is keymap_notify */
575 focus_in = (xcb_focus_in_event_t *) prev;
576 keymap_notify = (xcb_keymap_notify_event_t *) event;
577 c->keys.size = 0;
578 for (i = 0; i < ARRAY_LENGTH(keymap_notify->keys) * 8; i++) {
579 set = keymap_notify->keys[i >> 3] &
580 (1 << (i & 7));
581 if (set) {
582 k = wl_array_add(&c->keys, sizeof *k);
583 *k = i;
584 }
585 }
586
587 output = x11_compositor_find_output(c, focus_in->event);
588 notify_keyboard_focus(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500589 weston_compositor_get_time(),
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400590 &output->base, &c->keys);
591
592 free(prev);
593 prev = NULL;
594 break;
595
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400596 default:
597 /* No previous event held */
598 break;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400599 }
600
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400601 switch (event->response_type & ~0x80) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400602 case XCB_KEY_PRESS:
603 key_press = (xcb_key_press_event_t *) event;
604 notify_key(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500605 weston_compositor_get_time(),
Kristian Høgsberg293af262011-10-11 17:23:02 -0400606 key_press->detail - 8, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400607 break;
608 case XCB_KEY_RELEASE:
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400609 prev = event;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400610 break;
611 case XCB_BUTTON_PRESS:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200612 x11_compositor_deliver_button_event(c, event, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400613 break;
614 case XCB_BUTTON_RELEASE:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200615 x11_compositor_deliver_button_event(c, event, 0);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400616 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400617 case XCB_MOTION_NOTIFY:
618 motion_notify = (xcb_motion_notify_event_t *) event;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700619 output = x11_compositor_find_output(c, motion_notify->event);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400620 notify_motion(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500621 weston_compositor_get_time(),
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700622 output->base.x + motion_notify->event_x,
623 output->base.y + motion_notify->event_y);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400624 break;
625
626 case XCB_EXPOSE:
Benjamin Franzke84290d02011-03-02 10:07:59 +0100627 /* FIXME: schedule output repaint */
628 /* output = x11_compositor_find_output(c, expose->window); */
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400629
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500630 weston_compositor_schedule_repaint(&c->base);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400631 break;
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400632
633 case XCB_ENTER_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500634 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500635 if (enter_notify->state >= Button1Mask)
636 break;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500637 output = x11_compositor_find_output(c, enter_notify->event);
638 notify_pointer_focus(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500639 weston_compositor_get_time(),
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500640 &output->base,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700641 output->base.x + enter_notify->event_x,
642 output->base.y + enter_notify->event_y);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400643 break;
644
645 case XCB_LEAVE_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500646 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500647 if (enter_notify->state >= Button1Mask)
648 break;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700649 output = x11_compositor_find_output(c, enter_notify->event);
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500650 notify_pointer_focus(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500651 weston_compositor_get_time(),
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500652 NULL,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700653 output->base.x + enter_notify->event_x,
654 output->base.y + enter_notify->event_y);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400655 break;
656
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400657 case XCB_CLIENT_MESSAGE:
658 client_message = (xcb_client_message_event_t *) event;
659 atom = client_message->data.data32[0];
660 if (atom == c->atom.wm_delete_window)
Kristian Høgsberg50dc6982010-12-01 16:43:56 -0500661 wl_display_terminate(c->base.wl_display);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400662 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400663
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500664 case XCB_FOCUS_IN:
665 focus_in = (xcb_focus_in_event_t *) event;
666 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED)
667 break;
668
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400669 prev = event;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500670 break;
671
672 case XCB_FOCUS_OUT:
673 focus_in = (xcb_focus_in_event_t *) event;
Kristian Høgsberg42e40ae2011-12-19 14:36:50 -0500674 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED ||
675 focus_in->mode == XCB_NOTIFY_MODE_UNGRAB)
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500676 break;
677 notify_keyboard_focus(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500678 weston_compositor_get_time(),
Kristian Høgsberg02ec0a52011-04-23 13:04:11 -0400679 NULL, NULL);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500680 break;
681
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500682 default:
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400683 break;
684 }
685
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400686 if (prev != event)
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400687 free (event);
688 }
689
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400690 switch (prev ? prev->response_type & ~0x80 : 0x80) {
691 case XCB_KEY_RELEASE:
692 key_release = (xcb_key_press_event_t *) prev;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400693 notify_key(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500694 weston_compositor_get_time(),
Kristian Høgsberg293af262011-10-11 17:23:02 -0400695 key_release->detail - 8, 0);
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400696 free(prev);
697 prev = NULL;
698 break;
699 default:
700 break;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500701 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400702
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400703 return event != NULL;
Kristian Høgsbergee724822011-04-21 14:51:44 -0400704}
705
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400706#define F(field) offsetof(struct x11_compositor, field)
707
708static void
709x11_compositor_get_resources(struct x11_compositor *c)
710{
711 static const struct { const char *name; int offset; } atoms[] = {
712 { "WM_PROTOCOLS", F(atom.wm_protocols) },
713 { "WM_NORMAL_HINTS", F(atom.wm_normal_hints) },
714 { "WM_SIZE_HINTS", F(atom.wm_size_hints) },
715 { "WM_DELETE_WINDOW", F(atom.wm_delete_window) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500716 { "WM_CLASS", F(atom.wm_class) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400717 { "_NET_WM_NAME", F(atom.net_wm_name) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500718 { "_NET_WM_ICON", F(atom.net_wm_icon) },
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400719 { "_NET_WM_STATE", F(atom.net_wm_state) },
720 { "_NET_WM_STATE_FULLSCREEN", F(atom.net_wm_state_fullscreen) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500721 { "STRING", F(atom.string) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400722 { "UTF8_STRING", F(atom.utf8_string) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500723 { "CARDINAL", F(atom.cardinal) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400724 };
725
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500726 xcb_intern_atom_cookie_t cookies[ARRAY_LENGTH(atoms)];
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400727 xcb_intern_atom_reply_t *reply;
728 xcb_pixmap_t pixmap;
729 xcb_gc_t gc;
730 int i;
731 uint8_t data[] = { 0, 0, 0, 0 };
732
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500733 for (i = 0; i < ARRAY_LENGTH(atoms); i++)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400734 cookies[i] = xcb_intern_atom (c->conn, 0,
735 strlen(atoms[i].name),
736 atoms[i].name);
737
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500738 for (i = 0; i < ARRAY_LENGTH(atoms); i++) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400739 reply = xcb_intern_atom_reply (c->conn, cookies[i], NULL);
740 *(xcb_atom_t *) ((char *) c + atoms[i].offset) = reply->atom;
741 free(reply);
742 }
743
744 pixmap = xcb_generate_id(c->conn);
745 gc = xcb_generate_id(c->conn);
746 xcb_create_pixmap(c->conn, 1, pixmap, c->screen->root, 1, 1);
747 xcb_create_gc(c->conn, gc, pixmap, 0, NULL);
748 xcb_put_image(c->conn, XCB_IMAGE_FORMAT_XY_PIXMAP,
749 pixmap, gc, 1, 1, 0, 0, 0, 32, sizeof data, data);
750 c->null_cursor = xcb_generate_id(c->conn);
751 xcb_create_cursor (c->conn, c->null_cursor,
752 pixmap, pixmap, 0, 0, 0, 0, 0, 0, 1, 1);
753 xcb_free_gc(c->conn, gc);
754 xcb_free_pixmap(c->conn, pixmap);
755}
756
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500757static void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500758x11_destroy(struct weston_compositor *ec)
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500759{
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200760 struct x11_compositor *compositor = (struct x11_compositor *)ec;
Matt Roper361d2ad2011-08-29 13:52:23 -0700761
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200762 wl_event_source_remove(compositor->xcb_source);
763 x11_input_destroy(compositor);
764
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500765 weston_compositor_shutdown(ec); /* destroys outputs, too */
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200766
767 x11_compositor_fini_egl(compositor);
768
769 XCloseDisplay(compositor->dpy);
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500770 free(ec);
771}
772
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500773static struct weston_compositor *
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400774x11_compositor_create(struct wl_display *display,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700775 int width, int height, int count, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400776{
777 struct x11_compositor *c;
778 struct wl_event_loop *loop;
779 xcb_screen_iterator_t s;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700780 int i, x;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400781
782 c = malloc(sizeof *c);
783 if (c == NULL)
784 return NULL;
785
786 memset(c, 0, sizeof *c);
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100787
788 c->dpy = XOpenDisplay(NULL);
Cyril Brulebois20798292011-04-06 18:05:40 +0200789 if (c->dpy == NULL)
790 return NULL;
791
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100792 c->conn = XGetXCBConnection(c->dpy);
Benjamin Franzkee997c5f2011-03-25 14:06:37 +0100793 XSetEventQueueOwner(c->dpy, XCBOwnsEventQueue);
794
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400795 if (xcb_connection_has_error(c->conn))
796 return NULL;
797
798 s = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
799 c->screen = s.data;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500800 wl_array_init(&c->keys);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400801
802 x11_compositor_get_resources(c);
803
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400804 c->base.wl_display = display;
Tiago Vignatti997ce642010-11-10 02:42:35 +0200805 if (x11_compositor_init_egl(c) < 0)
Darxus55973f22010-11-22 21:24:39 -0500806 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400807
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500808 c->base.destroy = x11_destroy;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500809
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400810 /* Can't init base class until we have a current egl context */
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500811 if (weston_compositor_init(&c->base, display) < 0)
Kristian Høgsberga9468212010-06-14 21:03:11 -0400812 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400813
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700814 for (i = 0, x = 0; i < count; i++) {
815 if (x11_compositor_create_output(c, x, 0, width, height,
816 fullscreen) < 0)
817 return NULL;
818 x += width;
819 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400820
Darxus55973f22010-11-22 21:24:39 -0500821 if (x11_input_create(c) < 0)
822 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400823
824 loop = wl_display_get_event_loop(c->base.wl_display);
825
826 c->xcb_source =
827 wl_event_loop_add_fd(loop, xcb_get_file_descriptor(c->conn),
828 WL_EVENT_READABLE,
829 x11_compositor_handle_event, c);
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400830 wl_event_source_check(c->xcb_source);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400831
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400832 return &c->base;
833}
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400834
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500835struct weston_compositor *
Kristian Høgsberg6c709a32011-05-06 14:52:41 -0400836backend_init(struct wl_display *display, char *options);
837
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500838WL_EXPORT struct weston_compositor *
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400839backend_init(struct wl_display *display, char *options)
840{
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700841 int width = 1024, height = 640, fullscreen = 0, count = 1, i;
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400842 char *p, *value;
843
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400844 static char * const tokens[] = {
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700845 "width", "height", "fullscreen", "output-count", NULL
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400846 };
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400847
848 p = options;
849 while (i = getsubopt(&p, tokens, &value), i != -1) {
850 switch (i) {
851 case 0:
852 width = strtol(value, NULL, 0);
853 break;
854 case 1:
855 height = strtol(value, NULL, 0);
856 break;
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400857 case 2:
858 fullscreen = 1;
859 break;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700860 case 3:
861 count = strtol(value, NULL, 0);
862 break;
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400863 }
864 }
865
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700866 return x11_compositor_create(display,
867 width, height, count, fullscreen);
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400868}