blob: 53998d246308ca6dbef4b44cc23db4d106121d5f [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
Matt Roper361d2ad2011-08-29 13:52:23 -0700224static void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500225x11_output_destroy(struct weston_output *output_base)
Matt Roper361d2ad2011-08-29 13:52:23 -0700226{
Pekka Paalanen2de99e22012-01-03 11:51:03 +0200227 struct x11_output *output = (struct x11_output *)output_base;
228 struct x11_compositor *compositor =
229 (struct x11_compositor *)output->base.compositor;
230
231 wl_list_remove(&output->base.link);
232 wl_event_source_remove(output->finish_frame_timer);
233
234 eglDestroySurface(compositor->base.display, output->egl_surface);
235
236 xcb_destroy_window(compositor->conn, output->window);
237
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500238 weston_output_destroy(&output->base);
Pekka Paalanen2de99e22012-01-03 11:51:03 +0200239
240 free(output);
Matt Roper361d2ad2011-08-29 13:52:23 -0700241}
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200242
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400243static void
244x11_output_set_wm_protocols(struct x11_output *output)
245{
246 xcb_atom_t list[1];
247 struct x11_compositor *c =
248 (struct x11_compositor *) output->base.compositor;
249
250 list[0] = c->atom.wm_delete_window;
251 xcb_change_property (c->conn,
252 XCB_PROP_MODE_REPLACE,
253 output->window,
254 c->atom.wm_protocols,
255 XCB_ATOM_ATOM,
256 32,
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500257 ARRAY_LENGTH(list),
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400258 list);
259}
260
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400261static void
262x11_output_change_state(struct x11_output *output, int add, xcb_atom_t state)
263{
264 xcb_client_message_event_t event;
265 struct x11_compositor *c =
266 (struct x11_compositor *) output->base.compositor;
267 xcb_screen_iterator_t iter;
268
269#define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
270#define _NET_WM_STATE_ADD 1 /* add/set property */
271#define _NET_WM_STATE_TOGGLE 2 /* toggle property */
272
273 memset(&event, 0, sizeof event);
274 event.response_type = XCB_CLIENT_MESSAGE;
275 event.format = 32;
276 event.window = output->window;
277 event.type = c->atom.net_wm_state;
278
279 event.data.data32[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
280 event.data.data32[1] = state;
281 event.data.data32[2] = 0;
282 event.data.data32[3] = 0;
283 event.data.data32[4] = 0;
284
285 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
286 xcb_send_event(c->conn, 0, iter.data->root,
287 XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY |
288 XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT,
289 (void *) &event);
290}
291
292
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400293struct wm_normal_hints {
294 uint32_t flags;
295 uint32_t pad[4];
296 int32_t min_width, min_height;
297 int32_t max_width, max_height;
298 int32_t width_inc, height_inc;
299 int32_t min_aspect_x, min_aspect_y;
300 int32_t max_aspect_x, max_aspect_y;
301 int32_t base_width, base_height;
302 int32_t win_gravity;
303};
304
305#define WM_NORMAL_HINTS_MIN_SIZE 16
306#define WM_NORMAL_HINTS_MAX_SIZE 32
307
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500308static void
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400309x11_output_set_icon(struct x11_compositor *c,
310 struct x11_output *output, const char *filename)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500311{
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400312 uint32_t *icon, *pixels, stride;
313 int32_t width, height;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500314
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500315 pixels = weston_load_image(filename, &width, &height, &stride);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500316 if (!pixels)
317 return;
318 icon = malloc(width * height * 4 + 8);
319 if (!icon) {
320 free(pixels);
321 return;
322 }
323
324 icon[0] = width;
325 icon[1] = height;
326 memcpy(icon + 2, pixels, width * height * 4);
327 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
328 c->atom.net_wm_icon, c->atom.cardinal, 32,
329 width * height + 2, icon);
330 free(icon);
331 free(pixels);
332}
333
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400334static int
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700335x11_compositor_create_output(struct x11_compositor *c, int x, int y,
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400336 int width, int height, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400337{
Kristian Høgsberg86000402012-01-03 23:24:14 -0500338 static const char name[] = "Weston Compositor";
339 static const char class[] = "weston-1\0Weston Compositor";
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400340 struct x11_output *output;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400341 xcb_screen_iterator_t iter;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400342 struct wm_normal_hints normal_hints;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400343 struct wl_event_loop *loop;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400344 uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_CURSOR;
345 uint32_t values[2] = {
346 XCB_EVENT_MASK_KEY_PRESS |
347 XCB_EVENT_MASK_KEY_RELEASE |
348 XCB_EVENT_MASK_BUTTON_PRESS |
349 XCB_EVENT_MASK_BUTTON_RELEASE |
350 XCB_EVENT_MASK_POINTER_MOTION |
351 XCB_EVENT_MASK_EXPOSURE |
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400352 XCB_EVENT_MASK_STRUCTURE_NOTIFY |
353 XCB_EVENT_MASK_ENTER_WINDOW |
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500354 XCB_EVENT_MASK_LEAVE_WINDOW |
355 XCB_EVENT_MASK_KEYMAP_STATE |
356 XCB_EVENT_MASK_FOCUS_CHANGE,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400357 0
358 };
359
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400360 output = malloc(sizeof *output);
361 if (output == NULL)
362 return -1;
363
364 memset(output, 0, sizeof *output);
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -0400365
366 output->mode.flags =
367 WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
368 output->mode.width = width;
369 output->mode.height = height;
370 output->mode.refresh = 60;
371 wl_list_init(&output->base.mode_list);
372 wl_list_insert(&output->base.mode_list, &output->mode.link);
373
374 output->base.current = &output->mode;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500375 weston_output_init(&output->base, &c->base, x, y, width, height,
Benjamin Franzke84290d02011-03-02 10:07:59 +0100376 WL_OUTPUT_FLIPPED);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400377
378 values[1] = c->null_cursor;
379 output->window = xcb_generate_id(c->conn);
380 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
381 xcb_create_window(c->conn,
382 XCB_COPY_FROM_PARENT,
383 output->window,
384 iter.data->root,
385 0, 0,
386 width, height,
387 0,
388 XCB_WINDOW_CLASS_INPUT_OUTPUT,
389 iter.data->root_visual,
390 mask, values);
391
392 /* Don't resize me. */
393 memset(&normal_hints, 0, sizeof normal_hints);
394 normal_hints.flags =
395 WM_NORMAL_HINTS_MAX_SIZE | WM_NORMAL_HINTS_MIN_SIZE;
396 normal_hints.min_width = width;
397 normal_hints.min_height = height;
398 normal_hints.max_width = width;
399 normal_hints.max_height = height;
400 xcb_change_property (c->conn, XCB_PROP_MODE_REPLACE, output->window,
401 c->atom.wm_normal_hints,
402 c->atom.wm_size_hints, 32,
403 sizeof normal_hints / 4,
404 (uint8_t *) &normal_hints);
405
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400406 /* Set window name. Don't bother with non-EWMH WMs. */
407 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
408 c->atom.net_wm_name, c->atom.utf8_string, 8,
409 strlen(name), name);
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500410 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
411 c->atom.wm_class, c->atom.string, 8,
412 sizeof class, class);
413
Kristian Høgsberg86000402012-01-03 23:24:14 -0500414 x11_output_set_icon(c, output, DATADIR "/weston/wayland.png");
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500415
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500416 xcb_map_window(c->conn, output->window);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400417
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400418 x11_output_set_wm_protocols(output);
419
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400420 if (fullscreen)
421 x11_output_change_state(output, 1,
422 c->atom.net_wm_state_fullscreen);
423
Benjamin Franzke84290d02011-03-02 10:07:59 +0100424 output->egl_surface =
425 eglCreateWindowSurface(c->base.display, c->base.config,
426 output->window, NULL);
427 if (!output->egl_surface) {
428 fprintf(stderr, "failed to create window surface\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400429 return -1;
430 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100431 if (!eglMakeCurrent(c->base.display, output->egl_surface,
432 output->egl_surface, c->base.context)) {
433 fprintf(stderr, "failed to make surface current\n");
434 return -1;
435 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400436
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400437 loop = wl_display_get_event_loop(c->base.wl_display);
438 output->finish_frame_timer =
439 wl_event_loop_add_timer(loop, finish_frame_handler, output);
440
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500441 output->base.repaint = x11_output_repaint;
Matt Roper361d2ad2011-08-29 13:52:23 -0700442 output->base.destroy = x11_output_destroy;
Jesse Barnes5308a5e2012-02-09 13:12:57 -0800443 output->base.assign_planes = NULL;
Tiago Vignatti8e53c7f2012-02-29 19:53:50 +0200444 output->base.set_backlight = NULL;
445 output->base.set_dpms = NULL;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100446
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400447 wl_list_insert(c->base.output_list.prev, &output->base.link);
448
449 return 0;
450}
451
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400452static struct x11_output *
453x11_compositor_find_output(struct x11_compositor *c, xcb_window_t window)
454{
455 struct x11_output *output;
456
457 wl_list_for_each(output, &c->base.output_list, base.link) {
458 if (output->window == window)
459 return output;
460 }
461
462 return NULL;
463}
464
Tiago Vignattia3a71622011-12-08 17:03:17 +0200465static void
466x11_compositor_deliver_button_event(struct x11_compositor *c,
467 xcb_generic_event_t *event, int state)
468{
469 xcb_button_press_event_t *button_event =
470 (xcb_button_press_event_t *) event;
471 int button;
472
473 switch (button_event->detail) {
474 default:
475 button = button_event->detail + BTN_LEFT - 1;
476 break;
477 case 2:
478 button = BTN_MIDDLE;
479 break;
480 case 3:
481 button = BTN_RIGHT;
482 break;
483 case 4:
484 case 5:
485 case 6:
486 case 7:
487 /* X11 sends wheel events as buttons events. But
488 * linux input treats as REL_WHEEL, therefore not
489 * button type at all. When we update the input
490 * protocol and get the 'axis' event, we'll send
491 * scroll events as axis events. */
492 return;
493 }
494
495 notify_button(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500496 weston_compositor_get_time(), button, state);
Tiago Vignattia3a71622011-12-08 17:03:17 +0200497}
498
Kristian Høgsbergee724822011-04-21 14:51:44 -0400499static int
500x11_compositor_next_event(struct x11_compositor *c,
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400501 xcb_generic_event_t **event, uint32_t mask)
Kristian Høgsbergee724822011-04-21 14:51:44 -0400502{
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400503 if (mask & WL_EVENT_READABLE) {
504 *event = xcb_poll_for_event(c->conn);
Kristian Høgsbergee724822011-04-21 14:51:44 -0400505 } else {
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400506#ifdef HAVE_XCB_POLL_FOR_QUEUED_EVENT
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400507 *event = xcb_poll_for_queued_event(c->conn);
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400508#else
509 *event = xcb_poll_for_event(c->conn);
510#endif
Kristian Høgsbergee724822011-04-21 14:51:44 -0400511 }
512
513 return *event != NULL;
514}
515
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400516static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400517x11_compositor_handle_event(int fd, uint32_t mask, void *data)
518{
519 struct x11_compositor *c = data;
520 struct x11_output *output;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400521 xcb_generic_event_t *event, *prev;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400522 xcb_client_message_event_t *client_message;
523 xcb_motion_notify_event_t *motion_notify;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500524 xcb_enter_notify_event_t *enter_notify;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400525 xcb_key_press_event_t *key_press, *key_release;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500526 xcb_keymap_notify_event_t *keymap_notify;
527 xcb_focus_in_event_t *focus_in;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400528 xcb_atom_t atom;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500529 uint32_t *k;
530 int i, set;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400531
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400532 prev = NULL;
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400533 while (x11_compositor_next_event(c, &event, mask)) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400534 switch (prev ? prev->response_type & ~0x80 : 0x80) {
535 case XCB_KEY_RELEASE:
536 key_release = (xcb_key_press_event_t *) prev;
537 key_press = (xcb_key_press_event_t *) event;
538 if ((event->response_type & ~0x80) == XCB_KEY_PRESS &&
Dima Ryazanovc2247482011-08-16 17:25:32 -0700539 key_release->time == key_press->time &&
540 key_release->detail == key_press->detail) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400541 /* Don't deliver the held key release
542 * event or the new key press event. */
543 free(event);
544 free(prev);
545 prev = NULL;
546 continue;
547 } else {
548 /* Deliver the held key release now
549 * and fall through and handle the new
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400550 * event below. */
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400551 notify_key(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500552 weston_compositor_get_time(),
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400553 key_release->detail - 8, 0);
554 free(prev);
555 prev = NULL;
556 break;
557 }
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400558
559 case XCB_FOCUS_IN:
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400560 /* assert event is keymap_notify */
561 focus_in = (xcb_focus_in_event_t *) prev;
562 keymap_notify = (xcb_keymap_notify_event_t *) event;
563 c->keys.size = 0;
564 for (i = 0; i < ARRAY_LENGTH(keymap_notify->keys) * 8; i++) {
565 set = keymap_notify->keys[i >> 3] &
566 (1 << (i & 7));
567 if (set) {
568 k = wl_array_add(&c->keys, sizeof *k);
569 *k = i;
570 }
571 }
572
573 output = x11_compositor_find_output(c, focus_in->event);
574 notify_keyboard_focus(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500575 weston_compositor_get_time(),
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400576 &output->base, &c->keys);
577
578 free(prev);
579 prev = NULL;
580 break;
581
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400582 default:
583 /* No previous event held */
584 break;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400585 }
586
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400587 switch (event->response_type & ~0x80) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400588 case XCB_KEY_PRESS:
589 key_press = (xcb_key_press_event_t *) event;
590 notify_key(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500591 weston_compositor_get_time(),
Kristian Høgsberg293af262011-10-11 17:23:02 -0400592 key_press->detail - 8, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400593 break;
594 case XCB_KEY_RELEASE:
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400595 prev = event;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400596 break;
597 case XCB_BUTTON_PRESS:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200598 x11_compositor_deliver_button_event(c, event, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400599 break;
600 case XCB_BUTTON_RELEASE:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200601 x11_compositor_deliver_button_event(c, event, 0);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400602 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400603 case XCB_MOTION_NOTIFY:
604 motion_notify = (xcb_motion_notify_event_t *) event;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700605 output = x11_compositor_find_output(c, motion_notify->event);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400606 notify_motion(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500607 weston_compositor_get_time(),
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700608 output->base.x + motion_notify->event_x,
609 output->base.y + motion_notify->event_y);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400610 break;
611
612 case XCB_EXPOSE:
Benjamin Franzke84290d02011-03-02 10:07:59 +0100613 /* FIXME: schedule output repaint */
614 /* output = x11_compositor_find_output(c, expose->window); */
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400615
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500616 weston_compositor_schedule_repaint(&c->base);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400617 break;
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400618
619 case XCB_ENTER_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500620 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500621 if (enter_notify->state >= Button1Mask)
622 break;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500623 output = x11_compositor_find_output(c, enter_notify->event);
624 notify_pointer_focus(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500625 weston_compositor_get_time(),
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500626 &output->base,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700627 output->base.x + enter_notify->event_x,
628 output->base.y + enter_notify->event_y);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400629 break;
630
631 case XCB_LEAVE_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500632 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500633 if (enter_notify->state >= Button1Mask)
634 break;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700635 output = x11_compositor_find_output(c, enter_notify->event);
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500636 notify_pointer_focus(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500637 weston_compositor_get_time(),
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500638 NULL,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700639 output->base.x + enter_notify->event_x,
640 output->base.y + enter_notify->event_y);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400641 break;
642
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400643 case XCB_CLIENT_MESSAGE:
644 client_message = (xcb_client_message_event_t *) event;
645 atom = client_message->data.data32[0];
646 if (atom == c->atom.wm_delete_window)
Kristian Høgsberg50dc6982010-12-01 16:43:56 -0500647 wl_display_terminate(c->base.wl_display);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400648 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400649
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500650 case XCB_FOCUS_IN:
651 focus_in = (xcb_focus_in_event_t *) event;
652 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED)
653 break;
654
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400655 prev = event;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500656 break;
657
658 case XCB_FOCUS_OUT:
659 focus_in = (xcb_focus_in_event_t *) event;
Kristian Høgsberg42e40ae2011-12-19 14:36:50 -0500660 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED ||
661 focus_in->mode == XCB_NOTIFY_MODE_UNGRAB)
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500662 break;
663 notify_keyboard_focus(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500664 weston_compositor_get_time(),
Kristian Høgsberg02ec0a52011-04-23 13:04:11 -0400665 NULL, NULL);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500666 break;
667
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500668 default:
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400669 break;
670 }
671
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400672 if (prev != event)
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400673 free (event);
674 }
675
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400676 switch (prev ? prev->response_type & ~0x80 : 0x80) {
677 case XCB_KEY_RELEASE:
678 key_release = (xcb_key_press_event_t *) prev;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400679 notify_key(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500680 weston_compositor_get_time(),
Kristian Høgsberg293af262011-10-11 17:23:02 -0400681 key_release->detail - 8, 0);
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400682 free(prev);
683 prev = NULL;
684 break;
685 default:
686 break;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500687 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400688
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400689 return event != NULL;
Kristian Høgsbergee724822011-04-21 14:51:44 -0400690}
691
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400692#define F(field) offsetof(struct x11_compositor, field)
693
694static void
695x11_compositor_get_resources(struct x11_compositor *c)
696{
697 static const struct { const char *name; int offset; } atoms[] = {
698 { "WM_PROTOCOLS", F(atom.wm_protocols) },
699 { "WM_NORMAL_HINTS", F(atom.wm_normal_hints) },
700 { "WM_SIZE_HINTS", F(atom.wm_size_hints) },
701 { "WM_DELETE_WINDOW", F(atom.wm_delete_window) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500702 { "WM_CLASS", F(atom.wm_class) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400703 { "_NET_WM_NAME", F(atom.net_wm_name) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500704 { "_NET_WM_ICON", F(atom.net_wm_icon) },
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400705 { "_NET_WM_STATE", F(atom.net_wm_state) },
706 { "_NET_WM_STATE_FULLSCREEN", F(atom.net_wm_state_fullscreen) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500707 { "STRING", F(atom.string) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400708 { "UTF8_STRING", F(atom.utf8_string) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500709 { "CARDINAL", F(atom.cardinal) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400710 };
711
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500712 xcb_intern_atom_cookie_t cookies[ARRAY_LENGTH(atoms)];
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400713 xcb_intern_atom_reply_t *reply;
714 xcb_pixmap_t pixmap;
715 xcb_gc_t gc;
716 int i;
717 uint8_t data[] = { 0, 0, 0, 0 };
718
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500719 for (i = 0; i < ARRAY_LENGTH(atoms); i++)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400720 cookies[i] = xcb_intern_atom (c->conn, 0,
721 strlen(atoms[i].name),
722 atoms[i].name);
723
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500724 for (i = 0; i < ARRAY_LENGTH(atoms); i++) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400725 reply = xcb_intern_atom_reply (c->conn, cookies[i], NULL);
726 *(xcb_atom_t *) ((char *) c + atoms[i].offset) = reply->atom;
727 free(reply);
728 }
729
730 pixmap = xcb_generate_id(c->conn);
731 gc = xcb_generate_id(c->conn);
732 xcb_create_pixmap(c->conn, 1, pixmap, c->screen->root, 1, 1);
733 xcb_create_gc(c->conn, gc, pixmap, 0, NULL);
734 xcb_put_image(c->conn, XCB_IMAGE_FORMAT_XY_PIXMAP,
735 pixmap, gc, 1, 1, 0, 0, 0, 32, sizeof data, data);
736 c->null_cursor = xcb_generate_id(c->conn);
737 xcb_create_cursor (c->conn, c->null_cursor,
738 pixmap, pixmap, 0, 0, 0, 0, 0, 0, 1, 1);
739 xcb_free_gc(c->conn, gc);
740 xcb_free_pixmap(c->conn, pixmap);
741}
742
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500743static void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500744x11_destroy(struct weston_compositor *ec)
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500745{
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200746 struct x11_compositor *compositor = (struct x11_compositor *)ec;
Matt Roper361d2ad2011-08-29 13:52:23 -0700747
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200748 wl_event_source_remove(compositor->xcb_source);
749 x11_input_destroy(compositor);
750
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500751 weston_compositor_shutdown(ec); /* destroys outputs, too */
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200752
753 x11_compositor_fini_egl(compositor);
754
755 XCloseDisplay(compositor->dpy);
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500756 free(ec);
757}
758
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500759static struct weston_compositor *
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400760x11_compositor_create(struct wl_display *display,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700761 int width, int height, int count, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400762{
763 struct x11_compositor *c;
764 struct wl_event_loop *loop;
765 xcb_screen_iterator_t s;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700766 int i, x;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400767
768 c = malloc(sizeof *c);
769 if (c == NULL)
770 return NULL;
771
772 memset(c, 0, sizeof *c);
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100773
774 c->dpy = XOpenDisplay(NULL);
Cyril Brulebois20798292011-04-06 18:05:40 +0200775 if (c->dpy == NULL)
776 return NULL;
777
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100778 c->conn = XGetXCBConnection(c->dpy);
Benjamin Franzkee997c5f2011-03-25 14:06:37 +0100779 XSetEventQueueOwner(c->dpy, XCBOwnsEventQueue);
780
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400781 if (xcb_connection_has_error(c->conn))
782 return NULL;
783
784 s = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
785 c->screen = s.data;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500786 wl_array_init(&c->keys);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400787
788 x11_compositor_get_resources(c);
789
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400790 c->base.wl_display = display;
Tiago Vignatti997ce642010-11-10 02:42:35 +0200791 if (x11_compositor_init_egl(c) < 0)
Darxus55973f22010-11-22 21:24:39 -0500792 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400793
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500794 c->base.destroy = x11_destroy;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500795
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400796 /* Can't init base class until we have a current egl context */
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500797 if (weston_compositor_init(&c->base, display) < 0)
Kristian Høgsberga9468212010-06-14 21:03:11 -0400798 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400799
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700800 for (i = 0, x = 0; i < count; i++) {
801 if (x11_compositor_create_output(c, x, 0, width, height,
802 fullscreen) < 0)
803 return NULL;
804 x += width;
805 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400806
Darxus55973f22010-11-22 21:24:39 -0500807 if (x11_input_create(c) < 0)
808 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400809
810 loop = wl_display_get_event_loop(c->base.wl_display);
811
812 c->xcb_source =
813 wl_event_loop_add_fd(loop, xcb_get_file_descriptor(c->conn),
814 WL_EVENT_READABLE,
815 x11_compositor_handle_event, c);
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400816 wl_event_source_check(c->xcb_source);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400817
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400818 return &c->base;
819}
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400820
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500821struct weston_compositor *
Kristian Høgsberg6c709a32011-05-06 14:52:41 -0400822backend_init(struct wl_display *display, char *options);
823
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500824WL_EXPORT struct weston_compositor *
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400825backend_init(struct wl_display *display, char *options)
826{
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700827 int width = 1024, height = 640, fullscreen = 0, count = 1, i;
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400828 char *p, *value;
829
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400830 static char * const tokens[] = {
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700831 "width", "height", "fullscreen", "output-count", NULL
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400832 };
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400833
834 p = options;
835 while (i = getsubopt(&p, tokens, &value), i != -1) {
836 switch (i) {
837 case 0:
838 width = strtol(value, NULL, 0);
839 break;
840 case 1:
841 height = strtol(value, NULL, 0);
842 break;
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400843 case 2:
844 fullscreen = 1;
845 break;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700846 case 3:
847 count = strtol(value, NULL, 0);
848 break;
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400849 }
850 }
851
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700852 return x11_compositor_create(display,
853 width, height, count, fullscreen);
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400854}