blob: b2f4a7bca9f910a4c641d80d0bbec5cacd54f926 [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 {
48 struct wlsc_compositor base;
49
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 {
73 struct wlsc_output base;
74
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øgsberg8f0ce052011-06-21 11:16:58 -040077 struct wlsc_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 {
82 struct wlsc_input_device base;
83};
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);
96 wlsc_input_device_init(&input->base, &c->base);
97
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
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400103static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400104x11_compositor_init_egl(struct x11_compositor *c)
105{
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400106 EGLint major, minor;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100107 EGLint n;
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400108 const char *extensions;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100109 EGLint config_attribs[] = {
110 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
111 EGL_RED_SIZE, 1,
112 EGL_GREEN_SIZE, 1,
113 EGL_BLUE_SIZE, 1,
114 EGL_DEPTH_SIZE, 1,
115 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
116 EGL_NONE
117 };
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400118 static const EGLint context_attribs[] = {
119 EGL_CONTEXT_CLIENT_VERSION, 2,
120 EGL_NONE
121 };
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400122
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100123 c->base.display = eglGetDisplay(c->dpy);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400124 if (c->base.display == NULL) {
125 fprintf(stderr, "failed to create display\n");
126 return -1;
127 }
128
129 if (!eglInitialize(c->base.display, &major, &minor)) {
130 fprintf(stderr, "failed to initialize display\n");
131 return -1;
132 }
133
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400134 extensions = eglQueryString(c->base.display, EGL_EXTENSIONS);
Ander Conselvan de Oliveiraef7c8d92011-11-01 16:37:41 +0200135 if (!strstr(extensions, "EGL_KHR_surfaceless_gles2")) {
136 fprintf(stderr, "EGL_KHR_surfaceless_gles2 not available\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400137 return -1;
138 }
139
Darxus55973f22010-11-22 21:24:39 -0500140 if (!eglBindAPI(EGL_OPENGL_ES_API)) {
141 fprintf(stderr, "failed to bind EGL_OPENGL_ES_API\n");
142 return -1;
143 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100144 if (!eglChooseConfig(c->base.display, config_attribs,
145 &c->base.config, 1, &n) || n == 0) {
146 fprintf(stderr, "failed to choose config: %d\n", n);
147 return -1;
148 }
Darxus55973f22010-11-22 21:24:39 -0500149
Benjamin Franzke84290d02011-03-02 10:07:59 +0100150 c->base.context = eglCreateContext(c->base.display, c->base.config,
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400151 EGL_NO_CONTEXT, context_attribs);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400152 if (c->base.context == NULL) {
153 fprintf(stderr, "failed to create context\n");
154 return -1;
155 }
156
157 if (!eglMakeCurrent(c->base.display, EGL_NO_SURFACE,
158 EGL_NO_SURFACE, c->base.context)) {
159 fprintf(stderr, "failed to make context current\n");
160 return -1;
161 }
162
163 return 0;
164}
165
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100166static int
167x11_output_prepare_render(struct wlsc_output *output_base)
168{
169 struct x11_output *output = (struct x11_output *) output_base;
170 struct wlsc_compositor *ec = output->base.compositor;
171
172 if (!eglMakeCurrent(ec->display, output->egl_surface,
173 output->egl_surface, ec->context)) {
174 fprintf(stderr, "failed to make current\n");
175 return -1;
176 }
177
178 return 0;
179}
180
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100181static int
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400182finish_frame_handler(void *data)
183{
184 struct x11_output *output = data;
185 uint32_t msec;
186 struct timeval tv;
187
188 gettimeofday(&tv, NULL);
189 msec = tv.tv_sec * 1000 + tv.tv_usec / 1000;
190 wlsc_output_finish_frame(&output->base, msec);
191
192 return 1;
193}
194
195static int
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100196x11_output_present(struct wlsc_output *output_base)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400197{
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100198 struct x11_output *output = (struct x11_output *) output_base;
199 struct wlsc_compositor *ec = output->base.compositor;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400200
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100201 if (x11_output_prepare_render(&output->base))
202 return -1;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100203
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100204 eglSwapBuffers(ec->display, output->egl_surface);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400205
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400206 wl_event_source_timer_update(output->finish_frame_timer, 10);
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100207
208 return 0;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400209}
210
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200211static int
Benjamin Franzke66aa2352011-04-20 17:06:13 +0200212x11_output_prepare_scanout_surface(struct wlsc_output *output_base,
213 struct wlsc_surface *es)
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200214{
Benjamin Franzke66aa2352011-04-20 17:06:13 +0200215 return -1;
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200216}
217
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200218static int
219x11_output_set_cursor(struct wlsc_output *output_base,
Kristian Høgsberge4c40a42011-05-06 14:04:21 -0400220 struct wlsc_input_device *input)
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200221{
222 return -1;
223}
224
Matt Roper361d2ad2011-08-29 13:52:23 -0700225static void
226x11_output_destroy(struct wlsc_output *output_base)
227{
Pekka Paalanen2de99e22012-01-03 11:51:03 +0200228 struct x11_output *output = (struct x11_output *)output_base;
229 struct x11_compositor *compositor =
230 (struct x11_compositor *)output->base.compositor;
231
232 wl_list_remove(&output->base.link);
233 wl_event_source_remove(output->finish_frame_timer);
234
235 eglDestroySurface(compositor->base.display, output->egl_surface);
236
237 xcb_destroy_window(compositor->conn, output->window);
238
239 wlsc_output_destroy(&output->base);
240
241 free(output);
Matt Roper361d2ad2011-08-29 13:52:23 -0700242}
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200243
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400244static void
245x11_output_set_wm_protocols(struct x11_output *output)
246{
247 xcb_atom_t list[1];
248 struct x11_compositor *c =
249 (struct x11_compositor *) output->base.compositor;
250
251 list[0] = c->atom.wm_delete_window;
252 xcb_change_property (c->conn,
253 XCB_PROP_MODE_REPLACE,
254 output->window,
255 c->atom.wm_protocols,
256 XCB_ATOM_ATOM,
257 32,
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500258 ARRAY_LENGTH(list),
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400259 list);
260}
261
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400262static void
263x11_output_change_state(struct x11_output *output, int add, xcb_atom_t state)
264{
265 xcb_client_message_event_t event;
266 struct x11_compositor *c =
267 (struct x11_compositor *) output->base.compositor;
268 xcb_screen_iterator_t iter;
269
270#define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
271#define _NET_WM_STATE_ADD 1 /* add/set property */
272#define _NET_WM_STATE_TOGGLE 2 /* toggle property */
273
274 memset(&event, 0, sizeof event);
275 event.response_type = XCB_CLIENT_MESSAGE;
276 event.format = 32;
277 event.window = output->window;
278 event.type = c->atom.net_wm_state;
279
280 event.data.data32[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
281 event.data.data32[1] = state;
282 event.data.data32[2] = 0;
283 event.data.data32[3] = 0;
284 event.data.data32[4] = 0;
285
286 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
287 xcb_send_event(c->conn, 0, iter.data->root,
288 XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY |
289 XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT,
290 (void *) &event);
291}
292
293
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400294struct wm_normal_hints {
295 uint32_t flags;
296 uint32_t pad[4];
297 int32_t min_width, min_height;
298 int32_t max_width, max_height;
299 int32_t width_inc, height_inc;
300 int32_t min_aspect_x, min_aspect_y;
301 int32_t max_aspect_x, max_aspect_y;
302 int32_t base_width, base_height;
303 int32_t win_gravity;
304};
305
306#define WM_NORMAL_HINTS_MIN_SIZE 16
307#define WM_NORMAL_HINTS_MAX_SIZE 32
308
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500309static void
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400310x11_output_set_icon(struct x11_compositor *c,
311 struct x11_output *output, const char *filename)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500312{
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400313 uint32_t *icon, *pixels, stride;
314 int32_t width, height;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500315
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400316 pixels = wlsc_load_image(filename, &width, &height, &stride);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500317 if (!pixels)
318 return;
319 icon = malloc(width * height * 4 + 8);
320 if (!icon) {
321 free(pixels);
322 return;
323 }
324
325 icon[0] = width;
326 icon[1] = height;
327 memcpy(icon + 2, pixels, width * height * 4);
328 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
329 c->atom.net_wm_icon, c->atom.cardinal, 32,
330 width * height + 2, icon);
331 free(icon);
332 free(pixels);
333}
334
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400335static int
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700336x11_compositor_create_output(struct x11_compositor *c, int x, int y,
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400337 int width, int height, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400338{
339 static const char name[] = "Wayland Compositor";
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500340 static const char class[] = "wayland-1\0Wayland Compositor";
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400341 struct x11_output *output;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400342 xcb_screen_iterator_t iter;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400343 struct wm_normal_hints normal_hints;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400344 struct wl_event_loop *loop;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400345 uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_CURSOR;
346 uint32_t values[2] = {
347 XCB_EVENT_MASK_KEY_PRESS |
348 XCB_EVENT_MASK_KEY_RELEASE |
349 XCB_EVENT_MASK_BUTTON_PRESS |
350 XCB_EVENT_MASK_BUTTON_RELEASE |
351 XCB_EVENT_MASK_POINTER_MOTION |
352 XCB_EVENT_MASK_EXPOSURE |
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400353 XCB_EVENT_MASK_STRUCTURE_NOTIFY |
354 XCB_EVENT_MASK_ENTER_WINDOW |
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500355 XCB_EVENT_MASK_LEAVE_WINDOW |
356 XCB_EVENT_MASK_KEYMAP_STATE |
357 XCB_EVENT_MASK_FOCUS_CHANGE,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400358 0
359 };
360
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400361 output = malloc(sizeof *output);
362 if (output == NULL)
363 return -1;
364
365 memset(output, 0, sizeof *output);
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -0400366
367 output->mode.flags =
368 WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
369 output->mode.width = width;
370 output->mode.height = height;
371 output->mode.refresh = 60;
372 wl_list_init(&output->base.mode_list);
373 wl_list_insert(&output->base.mode_list, &output->mode.link);
374
375 output->base.current = &output->mode;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700376 wlsc_output_init(&output->base, &c->base, x, y, width, height,
Benjamin Franzke84290d02011-03-02 10:07:59 +0100377 WL_OUTPUT_FLIPPED);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400378
379 values[1] = c->null_cursor;
380 output->window = xcb_generate_id(c->conn);
381 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
382 xcb_create_window(c->conn,
383 XCB_COPY_FROM_PARENT,
384 output->window,
385 iter.data->root,
386 0, 0,
387 width, height,
388 0,
389 XCB_WINDOW_CLASS_INPUT_OUTPUT,
390 iter.data->root_visual,
391 mask, values);
392
393 /* Don't resize me. */
394 memset(&normal_hints, 0, sizeof normal_hints);
395 normal_hints.flags =
396 WM_NORMAL_HINTS_MAX_SIZE | WM_NORMAL_HINTS_MIN_SIZE;
397 normal_hints.min_width = width;
398 normal_hints.min_height = height;
399 normal_hints.max_width = width;
400 normal_hints.max_height = height;
401 xcb_change_property (c->conn, XCB_PROP_MODE_REPLACE, output->window,
402 c->atom.wm_normal_hints,
403 c->atom.wm_size_hints, 32,
404 sizeof normal_hints / 4,
405 (uint8_t *) &normal_hints);
406
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400407 /* Set window name. Don't bother with non-EWMH WMs. */
408 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
409 c->atom.net_wm_name, c->atom.utf8_string, 8,
410 strlen(name), name);
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500411 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
412 c->atom.wm_class, c->atom.string, 8,
413 sizeof class, class);
414
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400415 x11_output_set_icon(c, output, DATADIR "/wayland/wayland.png");
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500416
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500417 xcb_map_window(c->conn, output->window);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400418
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400419 x11_output_set_wm_protocols(output);
420
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400421 if (fullscreen)
422 x11_output_change_state(output, 1,
423 c->atom.net_wm_state_fullscreen);
424
Benjamin Franzke84290d02011-03-02 10:07:59 +0100425 output->egl_surface =
426 eglCreateWindowSurface(c->base.display, c->base.config,
427 output->window, NULL);
428 if (!output->egl_surface) {
429 fprintf(stderr, "failed to create window surface\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400430 return -1;
431 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100432 if (!eglMakeCurrent(c->base.display, output->egl_surface,
433 output->egl_surface, c->base.context)) {
434 fprintf(stderr, "failed to make surface current\n");
435 return -1;
436 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400437
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400438 loop = wl_display_get_event_loop(c->base.wl_display);
439 output->finish_frame_timer =
440 wl_event_loop_add_timer(loop, finish_frame_handler, output);
441
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100442 output->base.prepare_render = x11_output_prepare_render;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100443 output->base.present = x11_output_present;
Benjamin Franzke66aa2352011-04-20 17:06:13 +0200444 output->base.prepare_scanout_surface =
445 x11_output_prepare_scanout_surface;
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200446 output->base.set_hardware_cursor = x11_output_set_cursor;
Matt Roper361d2ad2011-08-29 13:52:23 -0700447 output->base.destroy = x11_output_destroy;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100448
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400449 wl_list_insert(c->base.output_list.prev, &output->base.link);
450
451 return 0;
452}
453
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400454static struct x11_output *
455x11_compositor_find_output(struct x11_compositor *c, xcb_window_t window)
456{
457 struct x11_output *output;
458
459 wl_list_for_each(output, &c->base.output_list, base.link) {
460 if (output->window == window)
461 return output;
462 }
463
464 return NULL;
465}
466
Tiago Vignattia3a71622011-12-08 17:03:17 +0200467static void
468x11_compositor_deliver_button_event(struct x11_compositor *c,
469 xcb_generic_event_t *event, int state)
470{
471 xcb_button_press_event_t *button_event =
472 (xcb_button_press_event_t *) event;
473 int button;
474
475 switch (button_event->detail) {
476 default:
477 button = button_event->detail + BTN_LEFT - 1;
478 break;
479 case 2:
480 button = BTN_MIDDLE;
481 break;
482 case 3:
483 button = BTN_RIGHT;
484 break;
485 case 4:
486 case 5:
487 case 6:
488 case 7:
489 /* X11 sends wheel events as buttons events. But
490 * linux input treats as REL_WHEEL, therefore not
491 * button type at all. When we update the input
492 * protocol and get the 'axis' event, we'll send
493 * scroll events as axis events. */
494 return;
495 }
496
497 notify_button(c->base.input_device,
498 wlsc_compositor_get_time(), button, state);
499}
500
Kristian Høgsbergee724822011-04-21 14:51:44 -0400501static int
502x11_compositor_next_event(struct x11_compositor *c,
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400503 xcb_generic_event_t **event, uint32_t mask)
Kristian Høgsbergee724822011-04-21 14:51:44 -0400504{
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400505 if (mask & WL_EVENT_READABLE) {
506 *event = xcb_poll_for_event(c->conn);
Kristian Høgsbergee724822011-04-21 14:51:44 -0400507 } else {
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400508#ifdef HAVE_XCB_POLL_FOR_QUEUED_EVENT
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400509 *event = xcb_poll_for_queued_event(c->conn);
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400510#else
511 *event = xcb_poll_for_event(c->conn);
512#endif
Kristian Høgsbergee724822011-04-21 14:51:44 -0400513 }
514
515 return *event != NULL;
516}
517
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400518static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400519x11_compositor_handle_event(int fd, uint32_t mask, void *data)
520{
521 struct x11_compositor *c = data;
522 struct x11_output *output;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400523 xcb_generic_event_t *event, *prev;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400524 xcb_client_message_event_t *client_message;
525 xcb_motion_notify_event_t *motion_notify;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500526 xcb_enter_notify_event_t *enter_notify;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400527 xcb_key_press_event_t *key_press, *key_release;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500528 xcb_keymap_notify_event_t *keymap_notify;
529 xcb_focus_in_event_t *focus_in;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400530 xcb_atom_t atom;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500531 uint32_t *k;
532 int i, set;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400533
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400534 prev = NULL;
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400535 while (x11_compositor_next_event(c, &event, mask)) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400536 switch (prev ? prev->response_type & ~0x80 : 0x80) {
537 case XCB_KEY_RELEASE:
538 key_release = (xcb_key_press_event_t *) prev;
539 key_press = (xcb_key_press_event_t *) event;
540 if ((event->response_type & ~0x80) == XCB_KEY_PRESS &&
Dima Ryazanovc2247482011-08-16 17:25:32 -0700541 key_release->time == key_press->time &&
542 key_release->detail == key_press->detail) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400543 /* Don't deliver the held key release
544 * event or the new key press event. */
545 free(event);
546 free(prev);
547 prev = NULL;
548 continue;
549 } else {
550 /* Deliver the held key release now
551 * and fall through and handle the new
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400552 * event below. */
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400553 notify_key(c->base.input_device,
Kristian Høgsberg293af262011-10-11 17:23:02 -0400554 wlsc_compositor_get_time(),
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400555 key_release->detail - 8, 0);
556 free(prev);
557 prev = NULL;
558 break;
559 }
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400560
561 case XCB_FOCUS_IN:
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400562 /* assert event is keymap_notify */
563 focus_in = (xcb_focus_in_event_t *) prev;
564 keymap_notify = (xcb_keymap_notify_event_t *) event;
565 c->keys.size = 0;
566 for (i = 0; i < ARRAY_LENGTH(keymap_notify->keys) * 8; i++) {
567 set = keymap_notify->keys[i >> 3] &
568 (1 << (i & 7));
569 if (set) {
570 k = wl_array_add(&c->keys, sizeof *k);
571 *k = i;
572 }
573 }
574
575 output = x11_compositor_find_output(c, focus_in->event);
576 notify_keyboard_focus(c->base.input_device,
Kristian Høgsberg02ec0a52011-04-23 13:04:11 -0400577 wlsc_compositor_get_time(),
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400578 &output->base, &c->keys);
579
580 free(prev);
581 prev = NULL;
582 break;
583
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400584 default:
585 /* No previous event held */
586 break;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400587 }
588
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400589 switch (event->response_type & ~0x80) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400590 case XCB_KEY_PRESS:
591 key_press = (xcb_key_press_event_t *) event;
592 notify_key(c->base.input_device,
Kristian Høgsberg293af262011-10-11 17:23:02 -0400593 wlsc_compositor_get_time(),
594 key_press->detail - 8, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400595 break;
596 case XCB_KEY_RELEASE:
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400597 prev = event;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400598 break;
599 case XCB_BUTTON_PRESS:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200600 x11_compositor_deliver_button_event(c, event, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400601 break;
602 case XCB_BUTTON_RELEASE:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200603 x11_compositor_deliver_button_event(c, event, 0);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400604 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400605 case XCB_MOTION_NOTIFY:
606 motion_notify = (xcb_motion_notify_event_t *) event;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700607 output = x11_compositor_find_output(c, motion_notify->event);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400608 notify_motion(c->base.input_device,
Kristian Høgsberg293af262011-10-11 17:23:02 -0400609 wlsc_compositor_get_time(),
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700610 output->base.x + motion_notify->event_x,
611 output->base.y + motion_notify->event_y);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400612 break;
613
614 case XCB_EXPOSE:
Benjamin Franzke84290d02011-03-02 10:07:59 +0100615 /* FIXME: schedule output repaint */
616 /* output = x11_compositor_find_output(c, expose->window); */
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400617
Benjamin Franzke84290d02011-03-02 10:07:59 +0100618 wlsc_compositor_schedule_repaint(&c->base);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400619 break;
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400620
621 case XCB_ENTER_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500622 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500623 if (enter_notify->state >= Button1Mask)
624 break;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500625 output = x11_compositor_find_output(c, enter_notify->event);
626 notify_pointer_focus(c->base.input_device,
Kristian Høgsberg293af262011-10-11 17:23:02 -0400627 wlsc_compositor_get_time(),
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500628 &output->base,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700629 output->base.x + enter_notify->event_x,
630 output->base.y + enter_notify->event_y);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400631 break;
632
633 case XCB_LEAVE_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øgsberg1ccd9d22011-07-21 10:22:13 -0700637 output = x11_compositor_find_output(c, enter_notify->event);
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500638 notify_pointer_focus(c->base.input_device,
Kristian Høgsberg293af262011-10-11 17:23:02 -0400639 wlsc_compositor_get_time(),
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500640 NULL,
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
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400645 case XCB_CLIENT_MESSAGE:
646 client_message = (xcb_client_message_event_t *) event;
647 atom = client_message->data.data32[0];
648 if (atom == c->atom.wm_delete_window)
Kristian Høgsberg50dc6982010-12-01 16:43:56 -0500649 wl_display_terminate(c->base.wl_display);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400650 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400651
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500652 case XCB_FOCUS_IN:
653 focus_in = (xcb_focus_in_event_t *) event;
654 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED)
655 break;
656
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400657 prev = event;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500658 break;
659
660 case XCB_FOCUS_OUT:
661 focus_in = (xcb_focus_in_event_t *) event;
Kristian Høgsberg42e40ae2011-12-19 14:36:50 -0500662 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED ||
663 focus_in->mode == XCB_NOTIFY_MODE_UNGRAB)
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500664 break;
665 notify_keyboard_focus(c->base.input_device,
Kristian Høgsberg02ec0a52011-04-23 13:04:11 -0400666 wlsc_compositor_get_time(),
667 NULL, NULL);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500668 break;
669
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500670 default:
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400671 break;
672 }
673
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400674 if (prev != event)
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400675 free (event);
676 }
677
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400678 switch (prev ? prev->response_type & ~0x80 : 0x80) {
679 case XCB_KEY_RELEASE:
680 key_release = (xcb_key_press_event_t *) prev;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400681 notify_key(c->base.input_device,
Kristian Høgsberg293af262011-10-11 17:23:02 -0400682 wlsc_compositor_get_time(),
683 key_release->detail - 8, 0);
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400684 free(prev);
685 prev = NULL;
686 break;
687 default:
688 break;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500689 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400690
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400691 return event != NULL;
Kristian Høgsbergee724822011-04-21 14:51:44 -0400692}
693
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400694#define F(field) offsetof(struct x11_compositor, field)
695
696static void
697x11_compositor_get_resources(struct x11_compositor *c)
698{
699 static const struct { const char *name; int offset; } atoms[] = {
700 { "WM_PROTOCOLS", F(atom.wm_protocols) },
701 { "WM_NORMAL_HINTS", F(atom.wm_normal_hints) },
702 { "WM_SIZE_HINTS", F(atom.wm_size_hints) },
703 { "WM_DELETE_WINDOW", F(atom.wm_delete_window) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500704 { "WM_CLASS", F(atom.wm_class) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400705 { "_NET_WM_NAME", F(atom.net_wm_name) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500706 { "_NET_WM_ICON", F(atom.net_wm_icon) },
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400707 { "_NET_WM_STATE", F(atom.net_wm_state) },
708 { "_NET_WM_STATE_FULLSCREEN", F(atom.net_wm_state_fullscreen) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500709 { "STRING", F(atom.string) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400710 { "UTF8_STRING", F(atom.utf8_string) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500711 { "CARDINAL", F(atom.cardinal) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400712 };
713
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500714 xcb_intern_atom_cookie_t cookies[ARRAY_LENGTH(atoms)];
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400715 xcb_intern_atom_reply_t *reply;
716 xcb_pixmap_t pixmap;
717 xcb_gc_t gc;
718 int i;
719 uint8_t data[] = { 0, 0, 0, 0 };
720
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500721 for (i = 0; i < ARRAY_LENGTH(atoms); i++)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400722 cookies[i] = xcb_intern_atom (c->conn, 0,
723 strlen(atoms[i].name),
724 atoms[i].name);
725
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500726 for (i = 0; i < ARRAY_LENGTH(atoms); i++) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400727 reply = xcb_intern_atom_reply (c->conn, cookies[i], NULL);
728 *(xcb_atom_t *) ((char *) c + atoms[i].offset) = reply->atom;
729 free(reply);
730 }
731
732 pixmap = xcb_generate_id(c->conn);
733 gc = xcb_generate_id(c->conn);
734 xcb_create_pixmap(c->conn, 1, pixmap, c->screen->root, 1, 1);
735 xcb_create_gc(c->conn, gc, pixmap, 0, NULL);
736 xcb_put_image(c->conn, XCB_IMAGE_FORMAT_XY_PIXMAP,
737 pixmap, gc, 1, 1, 0, 0, 0, 32, sizeof data, data);
738 c->null_cursor = xcb_generate_id(c->conn);
739 xcb_create_cursor (c->conn, c->null_cursor,
740 pixmap, pixmap, 0, 0, 0, 0, 0, 0, 1, 1);
741 xcb_free_gc(c->conn, gc);
742 xcb_free_pixmap(c->conn, pixmap);
743}
744
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500745static void
746x11_destroy(struct wlsc_compositor *ec)
747{
Matt Roper361d2ad2011-08-29 13:52:23 -0700748 wlsc_compositor_shutdown(ec);
749
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500750 free(ec);
751}
752
Kristian Høgsberg6c709a32011-05-06 14:52:41 -0400753static struct wlsc_compositor *
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400754x11_compositor_create(struct wl_display *display,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700755 int width, int height, int count, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400756{
757 struct x11_compositor *c;
758 struct wl_event_loop *loop;
759 xcb_screen_iterator_t s;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700760 int i, x;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400761
762 c = malloc(sizeof *c);
763 if (c == NULL)
764 return NULL;
765
766 memset(c, 0, sizeof *c);
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100767
768 c->dpy = XOpenDisplay(NULL);
Cyril Brulebois20798292011-04-06 18:05:40 +0200769 if (c->dpy == NULL)
770 return NULL;
771
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100772 c->conn = XGetXCBConnection(c->dpy);
Benjamin Franzkee997c5f2011-03-25 14:06:37 +0100773 XSetEventQueueOwner(c->dpy, XCBOwnsEventQueue);
774
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400775 if (xcb_connection_has_error(c->conn))
776 return NULL;
777
778 s = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
779 c->screen = s.data;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500780 wl_array_init(&c->keys);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400781
782 x11_compositor_get_resources(c);
783
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400784 c->base.wl_display = display;
Tiago Vignatti997ce642010-11-10 02:42:35 +0200785 if (x11_compositor_init_egl(c) < 0)
Darxus55973f22010-11-22 21:24:39 -0500786 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400787
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500788 c->base.destroy = x11_destroy;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500789
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400790 /* Can't init base class until we have a current egl context */
Kristian Høgsberga9468212010-06-14 21:03:11 -0400791 if (wlsc_compositor_init(&c->base, display) < 0)
792 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400793
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700794 for (i = 0, x = 0; i < count; i++) {
795 if (x11_compositor_create_output(c, x, 0, width, height,
796 fullscreen) < 0)
797 return NULL;
798 x += width;
799 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400800
Darxus55973f22010-11-22 21:24:39 -0500801 if (x11_input_create(c) < 0)
802 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400803
804 loop = wl_display_get_event_loop(c->base.wl_display);
805
806 c->xcb_source =
807 wl_event_loop_add_fd(loop, xcb_get_file_descriptor(c->conn),
808 WL_EVENT_READABLE,
809 x11_compositor_handle_event, c);
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400810 wl_event_source_check(c->xcb_source);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400811
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400812 return &c->base;
813}
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400814
815struct wlsc_compositor *
Kristian Høgsberg6c709a32011-05-06 14:52:41 -0400816backend_init(struct wl_display *display, char *options);
817
818WL_EXPORT struct wlsc_compositor *
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400819backend_init(struct wl_display *display, char *options)
820{
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700821 int width = 1024, height = 640, fullscreen = 0, count = 1, i;
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400822 char *p, *value;
823
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400824 static char * const tokens[] = {
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700825 "width", "height", "fullscreen", "output-count", NULL
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400826 };
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400827
828 p = options;
829 while (i = getsubopt(&p, tokens, &value), i != -1) {
830 switch (i) {
831 case 0:
832 width = strtol(value, NULL, 0);
833 break;
834 case 1:
835 height = strtol(value, NULL, 0);
836 break;
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400837 case 2:
838 fullscreen = 1;
839 break;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700840 case 3:
841 count = strtol(value, NULL, 0);
842 break;
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400843 }
844 }
845
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700846 return x11_compositor_create(display,
847 width, height, count, fullscreen);
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400848}