blob: c3eaab7094287bfb69aa6ebe8a388a3b6cc6d8d6 [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"
Kristian Høgsbergf02a6492012-03-12 01:05:25 -040046#include "../shared/config-parser.h"
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040047
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040048struct x11_compositor {
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050049 struct weston_compositor base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040050
Benjamin Franzke3b288af2011-02-20 19:58:42 +010051 Display *dpy;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040052 xcb_connection_t *conn;
53 xcb_screen_t *screen;
54 xcb_cursor_t null_cursor;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -050055 struct wl_array keys;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040056 struct wl_event_source *xcb_source;
57 struct {
58 xcb_atom_t wm_protocols;
59 xcb_atom_t wm_normal_hints;
60 xcb_atom_t wm_size_hints;
61 xcb_atom_t wm_delete_window;
Kristian Høgsberg24ed6212011-01-26 14:02:31 -050062 xcb_atom_t wm_class;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040063 xcb_atom_t net_wm_name;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -050064 xcb_atom_t net_wm_icon;
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -040065 xcb_atom_t net_wm_state;
66 xcb_atom_t net_wm_state_fullscreen;
Kristian Høgsberg24ed6212011-01-26 14:02:31 -050067 xcb_atom_t string;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040068 xcb_atom_t utf8_string;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -050069 xcb_atom_t cardinal;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040070 } atom;
71};
72
73struct x11_output {
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050074 struct weston_output base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040075
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040076 xcb_window_t window;
Benjamin Franzke84290d02011-03-02 10:07:59 +010077 EGLSurface egl_surface;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050078 struct weston_mode mode;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -040079 struct wl_event_source *finish_frame_timer;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040080};
81
82struct x11_input {
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050083 struct weston_input_device base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040084};
85
86
Darxus55973f22010-11-22 21:24:39 -050087static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040088x11_input_create(struct x11_compositor *c)
89{
90 struct x11_input *input;
91
92 input = malloc(sizeof *input);
93 if (input == NULL)
Darxus55973f22010-11-22 21:24:39 -050094 return -1;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040095
96 memset(input, 0, sizeof *input);
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050097 weston_input_device_init(&input->base, &c->base);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040098
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -050099 c->base.input_device = &input->base.input_device;
Darxus55973f22010-11-22 21:24:39 -0500100
101 return 0;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400102}
103
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200104static void
105x11_input_destroy(struct x11_compositor *compositor)
106{
107 struct x11_input *input = container_of(compositor->base.input_device,
108 struct x11_input,
109 base.input_device);
110
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500111 weston_input_device_release(&input->base);
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200112 free(input);
113}
114
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400115static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400116x11_compositor_init_egl(struct x11_compositor *c)
117{
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400118 EGLint major, minor;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100119 EGLint n;
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400120 const char *extensions;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100121 EGLint config_attribs[] = {
122 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
123 EGL_RED_SIZE, 1,
124 EGL_GREEN_SIZE, 1,
125 EGL_BLUE_SIZE, 1,
126 EGL_DEPTH_SIZE, 1,
127 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
128 EGL_NONE
129 };
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400130 static const EGLint context_attribs[] = {
131 EGL_CONTEXT_CLIENT_VERSION, 2,
132 EGL_NONE
133 };
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400134
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100135 c->base.display = eglGetDisplay(c->dpy);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400136 if (c->base.display == NULL) {
137 fprintf(stderr, "failed to create display\n");
138 return -1;
139 }
140
141 if (!eglInitialize(c->base.display, &major, &minor)) {
142 fprintf(stderr, "failed to initialize display\n");
143 return -1;
144 }
145
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400146 extensions = eglQueryString(c->base.display, EGL_EXTENSIONS);
Ander Conselvan de Oliveiraef7c8d92011-11-01 16:37:41 +0200147 if (!strstr(extensions, "EGL_KHR_surfaceless_gles2")) {
148 fprintf(stderr, "EGL_KHR_surfaceless_gles2 not available\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400149 return -1;
150 }
151
Darxus55973f22010-11-22 21:24:39 -0500152 if (!eglBindAPI(EGL_OPENGL_ES_API)) {
153 fprintf(stderr, "failed to bind EGL_OPENGL_ES_API\n");
154 return -1;
155 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100156 if (!eglChooseConfig(c->base.display, config_attribs,
157 &c->base.config, 1, &n) || n == 0) {
158 fprintf(stderr, "failed to choose config: %d\n", n);
159 return -1;
160 }
Darxus55973f22010-11-22 21:24:39 -0500161
Benjamin Franzke84290d02011-03-02 10:07:59 +0100162 c->base.context = eglCreateContext(c->base.display, c->base.config,
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400163 EGL_NO_CONTEXT, context_attribs);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400164 if (c->base.context == NULL) {
165 fprintf(stderr, "failed to create context\n");
166 return -1;
167 }
168
169 if (!eglMakeCurrent(c->base.display, EGL_NO_SURFACE,
170 EGL_NO_SURFACE, c->base.context)) {
171 fprintf(stderr, "failed to make context current\n");
172 return -1;
173 }
174
175 return 0;
176}
177
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200178static void
179x11_compositor_fini_egl(struct x11_compositor *compositor)
180{
181 eglMakeCurrent(compositor->base.display,
182 EGL_NO_SURFACE, EGL_NO_SURFACE,
183 EGL_NO_CONTEXT);
184
185 eglTerminate(compositor->base.display);
186 eglReleaseThread();
187}
188
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500189static void
Kristian Høgsberg6ddcdae2012-02-28 22:31:58 -0500190x11_output_repaint(struct weston_output *output_base,
191 pixman_region32_t *damage)
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500192{
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500193 struct x11_output *output = (struct x11_output *)output_base;
194 struct x11_compositor *compositor =
195 (struct x11_compositor *)output->base.compositor;
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500196 struct weston_surface *surface;
197
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500198 if (!eglMakeCurrent(compositor->base.display, output->egl_surface,
199 output->egl_surface, compositor->base.context)) {
200 fprintf(stderr, "failed to make current\n");
201 return;
202 }
203
204 wl_list_for_each_reverse(surface, &compositor->base.surface_list, link)
Kristian Høgsberg6ddcdae2012-02-28 22:31:58 -0500205 weston_surface_draw(surface, &output->base, damage);
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500206
207 eglSwapBuffers(compositor->base.display, output->egl_surface);
208
209 wl_event_source_timer_update(output->finish_frame_timer, 10);
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500210}
211
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100212static int
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400213finish_frame_handler(void *data)
214{
215 struct x11_output *output = data;
216 uint32_t msec;
217 struct timeval tv;
218
219 gettimeofday(&tv, NULL);
220 msec = tv.tv_sec * 1000 + tv.tv_usec / 1000;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500221 weston_output_finish_frame(&output->base, msec);
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400222
223 return 1;
224}
225
Matt Roper361d2ad2011-08-29 13:52:23 -0700226static void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500227x11_output_destroy(struct weston_output *output_base)
Matt Roper361d2ad2011-08-29 13:52:23 -0700228{
Pekka Paalanen2de99e22012-01-03 11:51:03 +0200229 struct x11_output *output = (struct x11_output *)output_base;
230 struct x11_compositor *compositor =
231 (struct x11_compositor *)output->base.compositor;
232
233 wl_list_remove(&output->base.link);
234 wl_event_source_remove(output->finish_frame_timer);
235
236 eglDestroySurface(compositor->base.display, output->egl_surface);
237
238 xcb_destroy_window(compositor->conn, output->window);
239
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500240 weston_output_destroy(&output->base);
Pekka Paalanen2de99e22012-01-03 11:51:03 +0200241
242 free(output);
Matt Roper361d2ad2011-08-29 13:52:23 -0700243}
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200244
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400245static void
246x11_output_set_wm_protocols(struct x11_output *output)
247{
248 xcb_atom_t list[1];
249 struct x11_compositor *c =
250 (struct x11_compositor *) output->base.compositor;
251
252 list[0] = c->atom.wm_delete_window;
253 xcb_change_property (c->conn,
254 XCB_PROP_MODE_REPLACE,
255 output->window,
256 c->atom.wm_protocols,
257 XCB_ATOM_ATOM,
258 32,
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500259 ARRAY_LENGTH(list),
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400260 list);
261}
262
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400263static void
264x11_output_change_state(struct x11_output *output, int add, xcb_atom_t state)
265{
266 xcb_client_message_event_t event;
267 struct x11_compositor *c =
268 (struct x11_compositor *) output->base.compositor;
269 xcb_screen_iterator_t iter;
270
271#define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
272#define _NET_WM_STATE_ADD 1 /* add/set property */
273#define _NET_WM_STATE_TOGGLE 2 /* toggle property */
274
275 memset(&event, 0, sizeof event);
276 event.response_type = XCB_CLIENT_MESSAGE;
277 event.format = 32;
278 event.window = output->window;
279 event.type = c->atom.net_wm_state;
280
281 event.data.data32[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
282 event.data.data32[1] = state;
283 event.data.data32[2] = 0;
284 event.data.data32[3] = 0;
285 event.data.data32[4] = 0;
286
287 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
288 xcb_send_event(c->conn, 0, iter.data->root,
289 XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY |
290 XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT,
291 (void *) &event);
292}
293
294
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400295struct wm_normal_hints {
296 uint32_t flags;
297 uint32_t pad[4];
298 int32_t min_width, min_height;
299 int32_t max_width, max_height;
300 int32_t width_inc, height_inc;
301 int32_t min_aspect_x, min_aspect_y;
302 int32_t max_aspect_x, max_aspect_y;
303 int32_t base_width, base_height;
304 int32_t win_gravity;
305};
306
307#define WM_NORMAL_HINTS_MIN_SIZE 16
308#define WM_NORMAL_HINTS_MAX_SIZE 32
309
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500310static void
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400311x11_output_set_icon(struct x11_compositor *c,
312 struct x11_output *output, const char *filename)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500313{
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400314 uint32_t *icon;
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400315 int32_t width, height;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400316 pixman_image_t *image;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500317
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400318 image = load_image(filename);
319 if (!image)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500320 return;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400321 width = pixman_image_get_width(image);
322 height = pixman_image_get_height(image);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500323 icon = malloc(width * height * 4 + 8);
324 if (!icon) {
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400325 pixman_image_unref(image);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500326 return;
327 }
328
329 icon[0] = width;
330 icon[1] = height;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400331 memcpy(icon + 2, pixman_image_get_data(image), width * height * 4);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500332 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
333 c->atom.net_wm_icon, c->atom.cardinal, 32,
334 width * height + 2, icon);
335 free(icon);
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400336 pixman_image_unref(image);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500337}
338
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400339static int
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700340x11_compositor_create_output(struct x11_compositor *c, int x, int y,
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400341 int width, int height, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400342{
Kristian Høgsberg86000402012-01-03 23:24:14 -0500343 static const char name[] = "Weston Compositor";
344 static const char class[] = "weston-1\0Weston Compositor";
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400345 struct x11_output *output;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400346 xcb_screen_iterator_t iter;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400347 struct wm_normal_hints normal_hints;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400348 struct wl_event_loop *loop;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400349 uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_CURSOR;
350 uint32_t values[2] = {
351 XCB_EVENT_MASK_KEY_PRESS |
352 XCB_EVENT_MASK_KEY_RELEASE |
353 XCB_EVENT_MASK_BUTTON_PRESS |
354 XCB_EVENT_MASK_BUTTON_RELEASE |
355 XCB_EVENT_MASK_POINTER_MOTION |
356 XCB_EVENT_MASK_EXPOSURE |
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400357 XCB_EVENT_MASK_STRUCTURE_NOTIFY |
358 XCB_EVENT_MASK_ENTER_WINDOW |
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500359 XCB_EVENT_MASK_LEAVE_WINDOW |
360 XCB_EVENT_MASK_KEYMAP_STATE |
361 XCB_EVENT_MASK_FOCUS_CHANGE,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400362 0
363 };
364
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400365 output = malloc(sizeof *output);
366 if (output == NULL)
367 return -1;
368
369 memset(output, 0, sizeof *output);
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -0400370
371 output->mode.flags =
372 WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
373 output->mode.width = width;
374 output->mode.height = height;
375 output->mode.refresh = 60;
376 wl_list_init(&output->base.mode_list);
377 wl_list_insert(&output->base.mode_list, &output->mode.link);
378
379 output->base.current = &output->mode;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500380 weston_output_init(&output->base, &c->base, x, y, width, height,
Benjamin Franzke84290d02011-03-02 10:07:59 +0100381 WL_OUTPUT_FLIPPED);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400382
383 values[1] = c->null_cursor;
384 output->window = xcb_generate_id(c->conn);
385 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
386 xcb_create_window(c->conn,
387 XCB_COPY_FROM_PARENT,
388 output->window,
389 iter.data->root,
390 0, 0,
391 width, height,
392 0,
393 XCB_WINDOW_CLASS_INPUT_OUTPUT,
394 iter.data->root_visual,
395 mask, values);
396
397 /* Don't resize me. */
398 memset(&normal_hints, 0, sizeof normal_hints);
399 normal_hints.flags =
400 WM_NORMAL_HINTS_MAX_SIZE | WM_NORMAL_HINTS_MIN_SIZE;
401 normal_hints.min_width = width;
402 normal_hints.min_height = height;
403 normal_hints.max_width = width;
404 normal_hints.max_height = height;
405 xcb_change_property (c->conn, XCB_PROP_MODE_REPLACE, output->window,
406 c->atom.wm_normal_hints,
407 c->atom.wm_size_hints, 32,
408 sizeof normal_hints / 4,
409 (uint8_t *) &normal_hints);
410
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400411 /* Set window name. Don't bother with non-EWMH WMs. */
412 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
413 c->atom.net_wm_name, c->atom.utf8_string, 8,
414 strlen(name), name);
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500415 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
416 c->atom.wm_class, c->atom.string, 8,
417 sizeof class, class);
418
Kristian Høgsberg86000402012-01-03 23:24:14 -0500419 x11_output_set_icon(c, output, DATADIR "/weston/wayland.png");
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500420
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500421 xcb_map_window(c->conn, output->window);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400422
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400423 x11_output_set_wm_protocols(output);
424
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400425 if (fullscreen)
426 x11_output_change_state(output, 1,
427 c->atom.net_wm_state_fullscreen);
428
Benjamin Franzke84290d02011-03-02 10:07:59 +0100429 output->egl_surface =
430 eglCreateWindowSurface(c->base.display, c->base.config,
431 output->window, NULL);
432 if (!output->egl_surface) {
433 fprintf(stderr, "failed to create window surface\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400434 return -1;
435 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100436 if (!eglMakeCurrent(c->base.display, output->egl_surface,
437 output->egl_surface, c->base.context)) {
438 fprintf(stderr, "failed to make surface current\n");
439 return -1;
440 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400441
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400442 loop = wl_display_get_event_loop(c->base.wl_display);
443 output->finish_frame_timer =
444 wl_event_loop_add_timer(loop, finish_frame_handler, output);
445
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500446 output->base.repaint = x11_output_repaint;
Matt Roper361d2ad2011-08-29 13:52:23 -0700447 output->base.destroy = x11_output_destroy;
Jesse Barnes5308a5e2012-02-09 13:12:57 -0800448 output->base.assign_planes = NULL;
Tiago Vignatti8e53c7f2012-02-29 19:53:50 +0200449 output->base.set_backlight = NULL;
450 output->base.set_dpms = NULL;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100451
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400452 wl_list_insert(c->base.output_list.prev, &output->base.link);
453
454 return 0;
455}
456
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400457static struct x11_output *
458x11_compositor_find_output(struct x11_compositor *c, xcb_window_t window)
459{
460 struct x11_output *output;
461
462 wl_list_for_each(output, &c->base.output_list, base.link) {
463 if (output->window == window)
464 return output;
465 }
466
467 return NULL;
468}
469
Tiago Vignattia3a71622011-12-08 17:03:17 +0200470static void
471x11_compositor_deliver_button_event(struct x11_compositor *c,
472 xcb_generic_event_t *event, int state)
473{
474 xcb_button_press_event_t *button_event =
475 (xcb_button_press_event_t *) event;
476 int button;
477
478 switch (button_event->detail) {
479 default:
480 button = button_event->detail + BTN_LEFT - 1;
481 break;
482 case 2:
483 button = BTN_MIDDLE;
484 break;
485 case 3:
486 button = BTN_RIGHT;
487 break;
488 case 4:
489 case 5:
490 case 6:
491 case 7:
492 /* X11 sends wheel events as buttons events. But
493 * linux input treats as REL_WHEEL, therefore not
494 * button type at all. When we update the input
495 * protocol and get the 'axis' event, we'll send
496 * scroll events as axis events. */
497 return;
498 }
499
500 notify_button(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500501 weston_compositor_get_time(), button, state);
Tiago Vignattia3a71622011-12-08 17:03:17 +0200502}
503
Kristian Høgsbergee724822011-04-21 14:51:44 -0400504static int
505x11_compositor_next_event(struct x11_compositor *c,
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400506 xcb_generic_event_t **event, uint32_t mask)
Kristian Høgsbergee724822011-04-21 14:51:44 -0400507{
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400508 if (mask & WL_EVENT_READABLE) {
509 *event = xcb_poll_for_event(c->conn);
Kristian Høgsbergee724822011-04-21 14:51:44 -0400510 } else {
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400511#ifdef HAVE_XCB_POLL_FOR_QUEUED_EVENT
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400512 *event = xcb_poll_for_queued_event(c->conn);
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400513#else
514 *event = xcb_poll_for_event(c->conn);
515#endif
Kristian Høgsbergee724822011-04-21 14:51:44 -0400516 }
517
518 return *event != NULL;
519}
520
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400521static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400522x11_compositor_handle_event(int fd, uint32_t mask, void *data)
523{
524 struct x11_compositor *c = data;
525 struct x11_output *output;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400526 xcb_generic_event_t *event, *prev;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400527 xcb_client_message_event_t *client_message;
528 xcb_motion_notify_event_t *motion_notify;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500529 xcb_enter_notify_event_t *enter_notify;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400530 xcb_key_press_event_t *key_press, *key_release;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500531 xcb_keymap_notify_event_t *keymap_notify;
532 xcb_focus_in_event_t *focus_in;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400533 xcb_atom_t atom;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500534 uint32_t *k;
535 int i, set;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400536
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400537 prev = NULL;
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400538 while (x11_compositor_next_event(c, &event, mask)) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400539 switch (prev ? prev->response_type & ~0x80 : 0x80) {
540 case XCB_KEY_RELEASE:
541 key_release = (xcb_key_press_event_t *) prev;
542 key_press = (xcb_key_press_event_t *) event;
543 if ((event->response_type & ~0x80) == XCB_KEY_PRESS &&
Dima Ryazanovc2247482011-08-16 17:25:32 -0700544 key_release->time == key_press->time &&
545 key_release->detail == key_press->detail) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400546 /* Don't deliver the held key release
547 * event or the new key press event. */
548 free(event);
549 free(prev);
550 prev = NULL;
551 continue;
552 } else {
553 /* Deliver the held key release now
554 * and fall through and handle the new
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400555 * event below. */
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400556 notify_key(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500557 weston_compositor_get_time(),
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400558 key_release->detail - 8, 0);
559 free(prev);
560 prev = NULL;
561 break;
562 }
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400563
564 case XCB_FOCUS_IN:
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400565 /* assert event is keymap_notify */
566 focus_in = (xcb_focus_in_event_t *) prev;
567 keymap_notify = (xcb_keymap_notify_event_t *) event;
568 c->keys.size = 0;
569 for (i = 0; i < ARRAY_LENGTH(keymap_notify->keys) * 8; i++) {
570 set = keymap_notify->keys[i >> 3] &
571 (1 << (i & 7));
572 if (set) {
573 k = wl_array_add(&c->keys, sizeof *k);
574 *k = i;
575 }
576 }
577
578 output = x11_compositor_find_output(c, focus_in->event);
579 notify_keyboard_focus(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500580 weston_compositor_get_time(),
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400581 &output->base, &c->keys);
582
583 free(prev);
584 prev = NULL;
585 break;
586
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400587 default:
588 /* No previous event held */
589 break;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400590 }
591
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400592 switch (event->response_type & ~0x80) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400593 case XCB_KEY_PRESS:
594 key_press = (xcb_key_press_event_t *) event;
595 notify_key(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500596 weston_compositor_get_time(),
Kristian Høgsberg293af262011-10-11 17:23:02 -0400597 key_press->detail - 8, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400598 break;
599 case XCB_KEY_RELEASE:
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400600 prev = event;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400601 break;
602 case XCB_BUTTON_PRESS:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200603 x11_compositor_deliver_button_event(c, event, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400604 break;
605 case XCB_BUTTON_RELEASE:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200606 x11_compositor_deliver_button_event(c, event, 0);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400607 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400608 case XCB_MOTION_NOTIFY:
609 motion_notify = (xcb_motion_notify_event_t *) event;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700610 output = x11_compositor_find_output(c, motion_notify->event);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400611 notify_motion(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500612 weston_compositor_get_time(),
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700613 output->base.x + motion_notify->event_x,
614 output->base.y + motion_notify->event_y);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400615 break;
616
617 case XCB_EXPOSE:
Benjamin Franzke84290d02011-03-02 10:07:59 +0100618 /* FIXME: schedule output repaint */
619 /* output = x11_compositor_find_output(c, expose->window); */
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400620
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500621 weston_compositor_schedule_repaint(&c->base);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400622 break;
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400623
624 case XCB_ENTER_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500625 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500626 if (enter_notify->state >= Button1Mask)
627 break;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500628 output = x11_compositor_find_output(c, enter_notify->event);
629 notify_pointer_focus(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500630 weston_compositor_get_time(),
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500631 &output->base,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700632 output->base.x + enter_notify->event_x,
633 output->base.y + enter_notify->event_y);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400634 break;
635
636 case XCB_LEAVE_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500637 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500638 if (enter_notify->state >= Button1Mask)
639 break;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700640 output = x11_compositor_find_output(c, enter_notify->event);
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500641 notify_pointer_focus(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500642 weston_compositor_get_time(),
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500643 NULL,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700644 output->base.x + enter_notify->event_x,
645 output->base.y + enter_notify->event_y);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400646 break;
647
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400648 case XCB_CLIENT_MESSAGE:
649 client_message = (xcb_client_message_event_t *) event;
650 atom = client_message->data.data32[0];
651 if (atom == c->atom.wm_delete_window)
Kristian Høgsberg50dc6982010-12-01 16:43:56 -0500652 wl_display_terminate(c->base.wl_display);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400653 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400654
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500655 case XCB_FOCUS_IN:
656 focus_in = (xcb_focus_in_event_t *) event;
657 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED)
658 break;
659
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400660 prev = event;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500661 break;
662
663 case XCB_FOCUS_OUT:
664 focus_in = (xcb_focus_in_event_t *) event;
Kristian Høgsberg42e40ae2011-12-19 14:36:50 -0500665 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED ||
666 focus_in->mode == XCB_NOTIFY_MODE_UNGRAB)
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500667 break;
668 notify_keyboard_focus(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500669 weston_compositor_get_time(),
Kristian Høgsberg02ec0a52011-04-23 13:04:11 -0400670 NULL, NULL);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500671 break;
672
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500673 default:
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400674 break;
675 }
676
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400677 if (prev != event)
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400678 free (event);
679 }
680
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400681 switch (prev ? prev->response_type & ~0x80 : 0x80) {
682 case XCB_KEY_RELEASE:
683 key_release = (xcb_key_press_event_t *) prev;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400684 notify_key(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500685 weston_compositor_get_time(),
Kristian Høgsberg293af262011-10-11 17:23:02 -0400686 key_release->detail - 8, 0);
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400687 free(prev);
688 prev = NULL;
689 break;
690 default:
691 break;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500692 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400693
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400694 return event != NULL;
Kristian Høgsbergee724822011-04-21 14:51:44 -0400695}
696
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400697#define F(field) offsetof(struct x11_compositor, field)
698
699static void
700x11_compositor_get_resources(struct x11_compositor *c)
701{
702 static const struct { const char *name; int offset; } atoms[] = {
703 { "WM_PROTOCOLS", F(atom.wm_protocols) },
704 { "WM_NORMAL_HINTS", F(atom.wm_normal_hints) },
705 { "WM_SIZE_HINTS", F(atom.wm_size_hints) },
706 { "WM_DELETE_WINDOW", F(atom.wm_delete_window) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500707 { "WM_CLASS", F(atom.wm_class) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400708 { "_NET_WM_NAME", F(atom.net_wm_name) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500709 { "_NET_WM_ICON", F(atom.net_wm_icon) },
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400710 { "_NET_WM_STATE", F(atom.net_wm_state) },
711 { "_NET_WM_STATE_FULLSCREEN", F(atom.net_wm_state_fullscreen) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500712 { "STRING", F(atom.string) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400713 { "UTF8_STRING", F(atom.utf8_string) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500714 { "CARDINAL", F(atom.cardinal) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400715 };
716
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500717 xcb_intern_atom_cookie_t cookies[ARRAY_LENGTH(atoms)];
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400718 xcb_intern_atom_reply_t *reply;
719 xcb_pixmap_t pixmap;
720 xcb_gc_t gc;
721 int i;
722 uint8_t data[] = { 0, 0, 0, 0 };
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 cookies[i] = xcb_intern_atom (c->conn, 0,
726 strlen(atoms[i].name),
727 atoms[i].name);
728
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500729 for (i = 0; i < ARRAY_LENGTH(atoms); i++) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400730 reply = xcb_intern_atom_reply (c->conn, cookies[i], NULL);
731 *(xcb_atom_t *) ((char *) c + atoms[i].offset) = reply->atom;
732 free(reply);
733 }
734
735 pixmap = xcb_generate_id(c->conn);
736 gc = xcb_generate_id(c->conn);
737 xcb_create_pixmap(c->conn, 1, pixmap, c->screen->root, 1, 1);
738 xcb_create_gc(c->conn, gc, pixmap, 0, NULL);
739 xcb_put_image(c->conn, XCB_IMAGE_FORMAT_XY_PIXMAP,
740 pixmap, gc, 1, 1, 0, 0, 0, 32, sizeof data, data);
741 c->null_cursor = xcb_generate_id(c->conn);
742 xcb_create_cursor (c->conn, c->null_cursor,
743 pixmap, pixmap, 0, 0, 0, 0, 0, 0, 1, 1);
744 xcb_free_gc(c->conn, gc);
745 xcb_free_pixmap(c->conn, pixmap);
746}
747
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500748static void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500749x11_destroy(struct weston_compositor *ec)
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500750{
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200751 struct x11_compositor *compositor = (struct x11_compositor *)ec;
Matt Roper361d2ad2011-08-29 13:52:23 -0700752
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200753 wl_event_source_remove(compositor->xcb_source);
754 x11_input_destroy(compositor);
755
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500756 weston_compositor_shutdown(ec); /* destroys outputs, too */
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200757
758 x11_compositor_fini_egl(compositor);
759
760 XCloseDisplay(compositor->dpy);
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500761 free(ec);
762}
763
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500764static struct weston_compositor *
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400765x11_compositor_create(struct wl_display *display,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700766 int width, int height, int count, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400767{
768 struct x11_compositor *c;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400769 xcb_screen_iterator_t s;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700770 int i, x;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400771
772 c = malloc(sizeof *c);
773 if (c == NULL)
774 return NULL;
775
776 memset(c, 0, sizeof *c);
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100777
778 c->dpy = XOpenDisplay(NULL);
Cyril Brulebois20798292011-04-06 18:05:40 +0200779 if (c->dpy == NULL)
780 return NULL;
781
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100782 c->conn = XGetXCBConnection(c->dpy);
Benjamin Franzkee997c5f2011-03-25 14:06:37 +0100783 XSetEventQueueOwner(c->dpy, XCBOwnsEventQueue);
784
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400785 if (xcb_connection_has_error(c->conn))
786 return NULL;
787
788 s = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
789 c->screen = s.data;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500790 wl_array_init(&c->keys);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400791
792 x11_compositor_get_resources(c);
793
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400794 c->base.wl_display = display;
Tiago Vignatti997ce642010-11-10 02:42:35 +0200795 if (x11_compositor_init_egl(c) < 0)
Darxus55973f22010-11-22 21:24:39 -0500796 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400797
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500798 c->base.destroy = x11_destroy;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500799
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400800 /* Can't init base class until we have a current egl context */
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500801 if (weston_compositor_init(&c->base, display) < 0)
Kristian Høgsberga9468212010-06-14 21:03:11 -0400802 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400803
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700804 for (i = 0, x = 0; i < count; i++) {
805 if (x11_compositor_create_output(c, x, 0, width, height,
806 fullscreen) < 0)
807 return NULL;
808 x += width;
809 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400810
Darxus55973f22010-11-22 21:24:39 -0500811 if (x11_input_create(c) < 0)
812 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400813
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400814 c->xcb_source =
Kristian Høgsberg22ba60e2012-03-12 01:18:24 -0400815 wl_event_loop_add_fd(c->base.input_loop,
816 xcb_get_file_descriptor(c->conn),
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400817 WL_EVENT_READABLE,
818 x11_compositor_handle_event, c);
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400819 wl_event_source_check(c->xcb_source);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400820
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400821 return &c->base;
822}
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400823
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500824WL_EXPORT struct weston_compositor *
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400825backend_init(struct wl_display *display, int argc, char *argv[])
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400826{
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400827 int width = 1024, height = 640, fullscreen = 0, count = 1;
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400828
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400829 const struct weston_option x11_options[] = {
830 { WESTON_OPTION_INTEGER, "width", 0, &width },
831 { WESTON_OPTION_INTEGER, "height", 0, &height },
832 { WESTON_OPTION_BOOLEAN, "fullscreen", 0, &fullscreen },
833 { WESTON_OPTION_INTEGER, "output-count", 0, &count },
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400834 };
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400835
836 parse_options(x11_options, ARRAY_LENGTH(x11_options), argc, argv);
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400837
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700838 return x11_compositor_create(display,
839 width, height, count, fullscreen);
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400840}