Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1 | /* |
Kristian Høgsberg | 96aa7da | 2011-09-15 15:43:14 -0400 | [diff] [blame] | 2 | * Copyright © 2008-2011 Kristian Høgsberg |
| 3 | * Copyright © 2010-2011 Intel Corporation |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 4 | * |
Kristian Høgsberg | 96aa7da | 2011-09-15 15:43:14 -0400 | [diff] [blame] | 5 | * Permission to use, copy, modify, distribute, and sell this software and |
| 6 | * its documentation for any purpose is hereby granted without fee, provided |
| 7 | * that the above copyright notice appear in all copies and that both that |
| 8 | * copyright notice and this permission notice appear in supporting |
| 9 | * documentation, and that the name of the copyright holders not be used in |
| 10 | * advertising or publicity pertaining to distribution of the software |
| 11 | * without specific, written prior permission. The copyright holders make |
| 12 | * no representations about the suitability of this software for any |
| 13 | * purpose. It is provided "as is" without express or implied warranty. |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 14 | * |
Kristian Høgsberg | 96aa7da | 2011-09-15 15:43:14 -0400 | [diff] [blame] | 15 | * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS |
| 16 | * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 17 | * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY |
| 18 | * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER |
| 19 | * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF |
| 20 | * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN |
| 21 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 22 | */ |
| 23 | |
Chia-I Wu | 1b6c0ed | 2010-10-29 15:20:18 +0800 | [diff] [blame] | 24 | #ifdef HAVE_CONFIG_H |
| 25 | #include <config.h> |
| 26 | #endif |
| 27 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 28 | #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øgsberg | f9112b2 | 2010-06-14 12:53:43 -0400 | [diff] [blame] | 36 | #include <linux/input.h> |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 37 | |
| 38 | #include <xcb/xcb.h> |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 39 | #include <X11/Xlib.h> |
| 40 | #include <X11/Xlib-xcb.h> |
| 41 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 42 | #include <GLES2/gl2.h> |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 43 | #include <EGL/egl.h> |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 44 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 45 | #include "compositor.h" |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 46 | #include "../shared/config-parser.h" |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 47 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 48 | struct x11_compositor { |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 49 | struct weston_compositor base; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 50 | |
Kristian Høgsberg | b5ef591 | 2012-03-28 22:53:49 -0400 | [diff] [blame] | 51 | EGLSurface dummy_pbuffer; |
| 52 | |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 53 | Display *dpy; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 54 | xcb_connection_t *conn; |
| 55 | xcb_screen_t *screen; |
| 56 | xcb_cursor_t null_cursor; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 57 | struct wl_array keys; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 58 | struct wl_event_source *xcb_source; |
| 59 | struct { |
| 60 | xcb_atom_t wm_protocols; |
| 61 | xcb_atom_t wm_normal_hints; |
| 62 | xcb_atom_t wm_size_hints; |
| 63 | xcb_atom_t wm_delete_window; |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 64 | xcb_atom_t wm_class; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 65 | xcb_atom_t net_wm_name; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 66 | xcb_atom_t net_wm_icon; |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 67 | xcb_atom_t net_wm_state; |
| 68 | xcb_atom_t net_wm_state_fullscreen; |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 69 | xcb_atom_t string; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 70 | xcb_atom_t utf8_string; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 71 | xcb_atom_t cardinal; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 72 | } atom; |
| 73 | }; |
| 74 | |
| 75 | struct x11_output { |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 76 | struct weston_output base; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 77 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 78 | xcb_window_t window; |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 79 | EGLSurface egl_surface; |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 80 | struct weston_mode mode; |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 81 | struct wl_event_source *finish_frame_timer; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | struct x11_input { |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 85 | struct weston_input_device base; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 89 | static int |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 90 | x11_input_create(struct x11_compositor *c) |
| 91 | { |
| 92 | struct x11_input *input; |
| 93 | |
| 94 | input = malloc(sizeof *input); |
| 95 | if (input == NULL) |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 96 | return -1; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 97 | |
| 98 | memset(input, 0, sizeof *input); |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 99 | weston_input_device_init(&input->base, &c->base); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 100 | |
Kristian Høgsberg | 9c3e8d7 | 2010-12-08 09:48:52 -0500 | [diff] [blame] | 101 | c->base.input_device = &input->base.input_device; |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 102 | |
| 103 | return 0; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 104 | } |
| 105 | |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 106 | static void |
| 107 | x11_input_destroy(struct x11_compositor *compositor) |
| 108 | { |
| 109 | struct x11_input *input = container_of(compositor->base.input_device, |
| 110 | struct x11_input, |
| 111 | base.input_device); |
| 112 | |
Kristian Høgsberg | 3466bc8 | 2012-01-03 11:29:15 -0500 | [diff] [blame] | 113 | weston_input_device_release(&input->base); |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 114 | free(input); |
| 115 | } |
| 116 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 117 | static int |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 118 | x11_compositor_init_egl(struct x11_compositor *c) |
| 119 | { |
Kristian Høgsberg | 379b678 | 2010-07-28 22:52:28 -0400 | [diff] [blame] | 120 | EGLint major, minor; |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 121 | EGLint n; |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 122 | EGLint config_attribs[] = { |
| 123 | EGL_SURFACE_TYPE, EGL_WINDOW_BIT, |
| 124 | EGL_RED_SIZE, 1, |
| 125 | EGL_GREEN_SIZE, 1, |
| 126 | EGL_BLUE_SIZE, 1, |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 127 | EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, |
| 128 | EGL_NONE |
| 129 | }; |
Kristian Høgsberg | 2c28aa5 | 2010-07-28 23:47:54 -0400 | [diff] [blame] | 130 | static const EGLint context_attribs[] = { |
| 131 | EGL_CONTEXT_CLIENT_VERSION, 2, |
| 132 | EGL_NONE |
| 133 | }; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 134 | |
Kristian Høgsberg | b5ef591 | 2012-03-28 22:53:49 -0400 | [diff] [blame] | 135 | static const EGLint pbuffer_attribs[] = { |
| 136 | EGL_WIDTH, 10, |
| 137 | EGL_HEIGHT, 10, |
| 138 | EGL_NONE |
| 139 | }; |
| 140 | |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 141 | c->base.display = eglGetDisplay(c->dpy); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 142 | if (c->base.display == NULL) { |
| 143 | fprintf(stderr, "failed to create display\n"); |
| 144 | return -1; |
| 145 | } |
| 146 | |
| 147 | if (!eglInitialize(c->base.display, &major, &minor)) { |
| 148 | fprintf(stderr, "failed to initialize display\n"); |
| 149 | return -1; |
| 150 | } |
| 151 | |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 152 | if (!eglBindAPI(EGL_OPENGL_ES_API)) { |
| 153 | fprintf(stderr, "failed to bind EGL_OPENGL_ES_API\n"); |
| 154 | return -1; |
| 155 | } |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 156 | 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 | } |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 161 | |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 162 | c->base.context = eglCreateContext(c->base.display, c->base.config, |
Kristian Høgsberg | 2c28aa5 | 2010-07-28 23:47:54 -0400 | [diff] [blame] | 163 | EGL_NO_CONTEXT, context_attribs); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 164 | if (c->base.context == NULL) { |
| 165 | fprintf(stderr, "failed to create context\n"); |
| 166 | return -1; |
| 167 | } |
| 168 | |
Kristian Høgsberg | b5ef591 | 2012-03-28 22:53:49 -0400 | [diff] [blame] | 169 | c->dummy_pbuffer = eglCreatePbufferSurface(c->base.display, |
| 170 | c->base.config, |
| 171 | pbuffer_attribs); |
| 172 | if (c->base.context == NULL) { |
| 173 | fprintf(stderr, "failed to create dummy pbuffer\n"); |
| 174 | return -1; |
| 175 | } |
| 176 | |
Cooper Yuan | 4577adc | 2012-04-30 14:16:46 -0400 | [diff] [blame] | 177 | if (!eglMakeCurrent(c->base.display, c->dummy_pbuffer, |
| 178 | c->dummy_pbuffer, c->base.context)) { |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 179 | fprintf(stderr, "failed to make context current\n"); |
| 180 | return -1; |
| 181 | } |
| 182 | |
| 183 | return 0; |
| 184 | } |
| 185 | |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 186 | static void |
| 187 | x11_compositor_fini_egl(struct x11_compositor *compositor) |
| 188 | { |
| 189 | eglMakeCurrent(compositor->base.display, |
| 190 | EGL_NO_SURFACE, EGL_NO_SURFACE, |
| 191 | EGL_NO_CONTEXT); |
| 192 | |
| 193 | eglTerminate(compositor->base.display); |
| 194 | eglReleaseThread(); |
| 195 | } |
| 196 | |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 197 | static void |
Kristian Høgsberg | 6ddcdae | 2012-02-28 22:31:58 -0500 | [diff] [blame] | 198 | x11_output_repaint(struct weston_output *output_base, |
| 199 | pixman_region32_t *damage) |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 200 | { |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 201 | struct x11_output *output = (struct x11_output *)output_base; |
| 202 | struct x11_compositor *compositor = |
| 203 | (struct x11_compositor *)output->base.compositor; |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 204 | struct weston_surface *surface; |
| 205 | |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 206 | if (!eglMakeCurrent(compositor->base.display, output->egl_surface, |
| 207 | output->egl_surface, compositor->base.context)) { |
| 208 | fprintf(stderr, "failed to make current\n"); |
| 209 | return; |
| 210 | } |
| 211 | |
| 212 | wl_list_for_each_reverse(surface, &compositor->base.surface_list, link) |
Kristian Høgsberg | 6ddcdae | 2012-02-28 22:31:58 -0500 | [diff] [blame] | 213 | weston_surface_draw(surface, &output->base, damage); |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 214 | |
Scott Moreau | 062be7e | 2012-04-20 13:37:33 -0600 | [diff] [blame] | 215 | weston_output_do_read_pixels(&output->base); |
| 216 | |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 217 | eglSwapBuffers(compositor->base.display, output->egl_surface); |
| 218 | |
| 219 | wl_event_source_timer_update(output->finish_frame_timer, 10); |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 220 | } |
| 221 | |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 222 | static int |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 223 | finish_frame_handler(void *data) |
| 224 | { |
| 225 | struct x11_output *output = data; |
| 226 | uint32_t msec; |
| 227 | struct timeval tv; |
| 228 | |
| 229 | gettimeofday(&tv, NULL); |
| 230 | msec = tv.tv_sec * 1000 + tv.tv_usec / 1000; |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 231 | weston_output_finish_frame(&output->base, msec); |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 232 | |
| 233 | return 1; |
| 234 | } |
| 235 | |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 236 | static void |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 237 | x11_output_destroy(struct weston_output *output_base) |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 238 | { |
Pekka Paalanen | 2de99e2 | 2012-01-03 11:51:03 +0200 | [diff] [blame] | 239 | struct x11_output *output = (struct x11_output *)output_base; |
| 240 | struct x11_compositor *compositor = |
| 241 | (struct x11_compositor *)output->base.compositor; |
| 242 | |
| 243 | wl_list_remove(&output->base.link); |
| 244 | wl_event_source_remove(output->finish_frame_timer); |
| 245 | |
| 246 | eglDestroySurface(compositor->base.display, output->egl_surface); |
| 247 | |
| 248 | xcb_destroy_window(compositor->conn, output->window); |
| 249 | |
Kristian Høgsberg | 3466bc8 | 2012-01-03 11:29:15 -0500 | [diff] [blame] | 250 | weston_output_destroy(&output->base); |
Pekka Paalanen | 2de99e2 | 2012-01-03 11:51:03 +0200 | [diff] [blame] | 251 | |
| 252 | free(output); |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 253 | } |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 254 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 255 | static void |
| 256 | x11_output_set_wm_protocols(struct x11_output *output) |
| 257 | { |
| 258 | xcb_atom_t list[1]; |
| 259 | struct x11_compositor *c = |
| 260 | (struct x11_compositor *) output->base.compositor; |
| 261 | |
| 262 | list[0] = c->atom.wm_delete_window; |
| 263 | xcb_change_property (c->conn, |
| 264 | XCB_PROP_MODE_REPLACE, |
| 265 | output->window, |
| 266 | c->atom.wm_protocols, |
| 267 | XCB_ATOM_ATOM, |
| 268 | 32, |
Kristian Høgsberg | 09e2692 | 2011-12-23 13:33:45 -0500 | [diff] [blame] | 269 | ARRAY_LENGTH(list), |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 270 | list); |
| 271 | } |
| 272 | |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 273 | static void |
| 274 | x11_output_change_state(struct x11_output *output, int add, xcb_atom_t state) |
| 275 | { |
| 276 | xcb_client_message_event_t event; |
| 277 | struct x11_compositor *c = |
| 278 | (struct x11_compositor *) output->base.compositor; |
| 279 | xcb_screen_iterator_t iter; |
| 280 | |
| 281 | #define _NET_WM_STATE_REMOVE 0 /* remove/unset property */ |
| 282 | #define _NET_WM_STATE_ADD 1 /* add/set property */ |
| 283 | #define _NET_WM_STATE_TOGGLE 2 /* toggle property */ |
| 284 | |
| 285 | memset(&event, 0, sizeof event); |
| 286 | event.response_type = XCB_CLIENT_MESSAGE; |
| 287 | event.format = 32; |
| 288 | event.window = output->window; |
| 289 | event.type = c->atom.net_wm_state; |
| 290 | |
| 291 | event.data.data32[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE; |
| 292 | event.data.data32[1] = state; |
| 293 | event.data.data32[2] = 0; |
| 294 | event.data.data32[3] = 0; |
| 295 | event.data.data32[4] = 0; |
| 296 | |
| 297 | iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn)); |
| 298 | xcb_send_event(c->conn, 0, iter.data->root, |
| 299 | XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY | |
| 300 | XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT, |
| 301 | (void *) &event); |
| 302 | } |
| 303 | |
| 304 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 305 | struct wm_normal_hints { |
| 306 | uint32_t flags; |
| 307 | uint32_t pad[4]; |
| 308 | int32_t min_width, min_height; |
| 309 | int32_t max_width, max_height; |
| 310 | int32_t width_inc, height_inc; |
| 311 | int32_t min_aspect_x, min_aspect_y; |
| 312 | int32_t max_aspect_x, max_aspect_y; |
| 313 | int32_t base_width, base_height; |
| 314 | int32_t win_gravity; |
| 315 | }; |
| 316 | |
| 317 | #define WM_NORMAL_HINTS_MIN_SIZE 16 |
| 318 | #define WM_NORMAL_HINTS_MAX_SIZE 32 |
| 319 | |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 320 | static void |
Kristian Høgsberg | b41d76c | 2011-04-23 15:03:15 -0400 | [diff] [blame] | 321 | x11_output_set_icon(struct x11_compositor *c, |
| 322 | struct x11_output *output, const char *filename) |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 323 | { |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 324 | uint32_t *icon; |
Kristian Høgsberg | b41d76c | 2011-04-23 15:03:15 -0400 | [diff] [blame] | 325 | int32_t width, height; |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 326 | pixman_image_t *image; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 327 | |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 328 | image = load_image(filename); |
| 329 | if (!image) |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 330 | return; |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 331 | width = pixman_image_get_width(image); |
| 332 | height = pixman_image_get_height(image); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 333 | icon = malloc(width * height * 4 + 8); |
| 334 | if (!icon) { |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 335 | pixman_image_unref(image); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 336 | return; |
| 337 | } |
| 338 | |
| 339 | icon[0] = width; |
| 340 | icon[1] = height; |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 341 | memcpy(icon + 2, pixman_image_get_data(image), width * height * 4); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 342 | xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window, |
| 343 | c->atom.net_wm_icon, c->atom.cardinal, 32, |
| 344 | width * height + 2, icon); |
| 345 | free(icon); |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 346 | pixman_image_unref(image); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 347 | } |
| 348 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 349 | static int |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 350 | x11_compositor_create_output(struct x11_compositor *c, int x, int y, |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 351 | int width, int height, int fullscreen) |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 352 | { |
Kristian Høgsberg | 8600040 | 2012-01-03 23:24:14 -0500 | [diff] [blame] | 353 | static const char name[] = "Weston Compositor"; |
| 354 | static const char class[] = "weston-1\0Weston Compositor"; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 355 | struct x11_output *output; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 356 | xcb_screen_iterator_t iter; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 357 | struct wm_normal_hints normal_hints; |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 358 | struct wl_event_loop *loop; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 359 | uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_CURSOR; |
| 360 | uint32_t values[2] = { |
| 361 | XCB_EVENT_MASK_KEY_PRESS | |
| 362 | XCB_EVENT_MASK_KEY_RELEASE | |
| 363 | XCB_EVENT_MASK_BUTTON_PRESS | |
| 364 | XCB_EVENT_MASK_BUTTON_RELEASE | |
| 365 | XCB_EVENT_MASK_POINTER_MOTION | |
| 366 | XCB_EVENT_MASK_EXPOSURE | |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 367 | XCB_EVENT_MASK_STRUCTURE_NOTIFY | |
| 368 | XCB_EVENT_MASK_ENTER_WINDOW | |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 369 | XCB_EVENT_MASK_LEAVE_WINDOW | |
| 370 | XCB_EVENT_MASK_KEYMAP_STATE | |
| 371 | XCB_EVENT_MASK_FOCUS_CHANGE, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 372 | 0 |
| 373 | }; |
| 374 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 375 | output = malloc(sizeof *output); |
| 376 | if (output == NULL) |
| 377 | return -1; |
| 378 | |
| 379 | memset(output, 0, sizeof *output); |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 380 | |
| 381 | output->mode.flags = |
| 382 | WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED; |
| 383 | output->mode.width = width; |
| 384 | output->mode.height = height; |
| 385 | output->mode.refresh = 60; |
| 386 | wl_list_init(&output->base.mode_list); |
| 387 | wl_list_insert(&output->base.mode_list, &output->mode.link); |
| 388 | |
| 389 | output->base.current = &output->mode; |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 390 | weston_output_init(&output->base, &c->base, x, y, width, height, |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 391 | WL_OUTPUT_FLIPPED); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 392 | |
| 393 | values[1] = c->null_cursor; |
| 394 | output->window = xcb_generate_id(c->conn); |
| 395 | iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn)); |
| 396 | xcb_create_window(c->conn, |
| 397 | XCB_COPY_FROM_PARENT, |
| 398 | output->window, |
| 399 | iter.data->root, |
| 400 | 0, 0, |
| 401 | width, height, |
| 402 | 0, |
| 403 | XCB_WINDOW_CLASS_INPUT_OUTPUT, |
| 404 | iter.data->root_visual, |
| 405 | mask, values); |
| 406 | |
| 407 | /* Don't resize me. */ |
| 408 | memset(&normal_hints, 0, sizeof normal_hints); |
| 409 | normal_hints.flags = |
| 410 | WM_NORMAL_HINTS_MAX_SIZE | WM_NORMAL_HINTS_MIN_SIZE; |
| 411 | normal_hints.min_width = width; |
| 412 | normal_hints.min_height = height; |
| 413 | normal_hints.max_width = width; |
| 414 | normal_hints.max_height = height; |
| 415 | xcb_change_property (c->conn, XCB_PROP_MODE_REPLACE, output->window, |
| 416 | c->atom.wm_normal_hints, |
| 417 | c->atom.wm_size_hints, 32, |
| 418 | sizeof normal_hints / 4, |
| 419 | (uint8_t *) &normal_hints); |
| 420 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 421 | /* Set window name. Don't bother with non-EWMH WMs. */ |
| 422 | xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window, |
| 423 | c->atom.net_wm_name, c->atom.utf8_string, 8, |
| 424 | strlen(name), name); |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 425 | xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window, |
| 426 | c->atom.wm_class, c->atom.string, 8, |
| 427 | sizeof class, class); |
| 428 | |
Kristian Høgsberg | 8600040 | 2012-01-03 23:24:14 -0500 | [diff] [blame] | 429 | x11_output_set_icon(c, output, DATADIR "/weston/wayland.png"); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 430 | |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 431 | xcb_map_window(c->conn, output->window); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 432 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 433 | x11_output_set_wm_protocols(output); |
| 434 | |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 435 | if (fullscreen) |
| 436 | x11_output_change_state(output, 1, |
| 437 | c->atom.net_wm_state_fullscreen); |
| 438 | |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 439 | output->egl_surface = |
| 440 | eglCreateWindowSurface(c->base.display, c->base.config, |
| 441 | output->window, NULL); |
| 442 | if (!output->egl_surface) { |
| 443 | fprintf(stderr, "failed to create window surface\n"); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 444 | return -1; |
| 445 | } |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 446 | if (!eglMakeCurrent(c->base.display, output->egl_surface, |
| 447 | output->egl_surface, c->base.context)) { |
| 448 | fprintf(stderr, "failed to make surface current\n"); |
| 449 | return -1; |
| 450 | } |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 451 | |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 452 | loop = wl_display_get_event_loop(c->base.wl_display); |
| 453 | output->finish_frame_timer = |
| 454 | wl_event_loop_add_timer(loop, finish_frame_handler, output); |
| 455 | |
Alex Wu | bd3354b | 2012-04-17 17:20:49 +0800 | [diff] [blame] | 456 | output->base.origin = output->base.current; |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 457 | output->base.repaint = x11_output_repaint; |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 458 | output->base.destroy = x11_output_destroy; |
Jesse Barnes | 5308a5e | 2012-02-09 13:12:57 -0800 | [diff] [blame] | 459 | output->base.assign_planes = NULL; |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 460 | output->base.set_backlight = NULL; |
| 461 | output->base.set_dpms = NULL; |
Alex Wu | 2dda604 | 2012-04-17 17:20:47 +0800 | [diff] [blame] | 462 | output->base.switch_mode = NULL; |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 463 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 464 | wl_list_insert(c->base.output_list.prev, &output->base.link); |
| 465 | |
| 466 | return 0; |
| 467 | } |
| 468 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 469 | static struct x11_output * |
| 470 | x11_compositor_find_output(struct x11_compositor *c, xcb_window_t window) |
| 471 | { |
| 472 | struct x11_output *output; |
| 473 | |
| 474 | wl_list_for_each(output, &c->base.output_list, base.link) { |
| 475 | if (output->window == window) |
| 476 | return output; |
| 477 | } |
| 478 | |
| 479 | return NULL; |
| 480 | } |
| 481 | |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 482 | static void |
| 483 | x11_compositor_deliver_button_event(struct x11_compositor *c, |
| 484 | xcb_generic_event_t *event, int state) |
| 485 | { |
| 486 | xcb_button_press_event_t *button_event = |
| 487 | (xcb_button_press_event_t *) event; |
| 488 | int button; |
| 489 | |
| 490 | switch (button_event->detail) { |
| 491 | default: |
| 492 | button = button_event->detail + BTN_LEFT - 1; |
| 493 | break; |
| 494 | case 2: |
| 495 | button = BTN_MIDDLE; |
| 496 | break; |
| 497 | case 3: |
| 498 | button = BTN_RIGHT; |
| 499 | break; |
| 500 | case 4: |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 501 | if (state) |
| 502 | notify_axis(c->base.input_device, |
| 503 | weston_compositor_get_time(), |
| 504 | WL_INPUT_DEVICE_AXIS_VERTICAL_SCROLL, 1); |
| 505 | return; |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 506 | case 5: |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 507 | if (state) |
| 508 | notify_axis(c->base.input_device, |
| 509 | weston_compositor_get_time(), |
| 510 | WL_INPUT_DEVICE_AXIS_VERTICAL_SCROLL, -1); |
| 511 | return; |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 512 | case 6: |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 513 | if (state) |
| 514 | notify_axis(c->base.input_device, |
| 515 | weston_compositor_get_time(), |
| 516 | WL_INPUT_DEVICE_AXIS_HORIZONTAL_SCROLL, 1); |
| 517 | return; |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 518 | case 7: |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 519 | if (state) |
| 520 | notify_axis(c->base.input_device, |
| 521 | weston_compositor_get_time(), |
| 522 | WL_INPUT_DEVICE_AXIS_HORIZONTAL_SCROLL, -1); |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 523 | return; |
| 524 | } |
| 525 | |
| 526 | notify_button(c->base.input_device, |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 527 | weston_compositor_get_time(), button, state); |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 528 | } |
| 529 | |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 530 | static int |
| 531 | x11_compositor_next_event(struct x11_compositor *c, |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 532 | xcb_generic_event_t **event, uint32_t mask) |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 533 | { |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 534 | if (mask & WL_EVENT_READABLE) { |
| 535 | *event = xcb_poll_for_event(c->conn); |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 536 | } else { |
Kristian Høgsberg | 82ed042 | 2011-04-25 15:41:59 -0400 | [diff] [blame] | 537 | #ifdef HAVE_XCB_POLL_FOR_QUEUED_EVENT |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 538 | *event = xcb_poll_for_queued_event(c->conn); |
Kristian Høgsberg | 82ed042 | 2011-04-25 15:41:59 -0400 | [diff] [blame] | 539 | #else |
| 540 | *event = xcb_poll_for_event(c->conn); |
| 541 | #endif |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 542 | } |
| 543 | |
| 544 | return *event != NULL; |
| 545 | } |
| 546 | |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 547 | static int |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 548 | x11_compositor_handle_event(int fd, uint32_t mask, void *data) |
| 549 | { |
| 550 | struct x11_compositor *c = data; |
| 551 | struct x11_output *output; |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 552 | xcb_generic_event_t *event, *prev; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 553 | xcb_client_message_event_t *client_message; |
| 554 | xcb_motion_notify_event_t *motion_notify; |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 555 | xcb_enter_notify_event_t *enter_notify; |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 556 | xcb_key_press_event_t *key_press, *key_release; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 557 | xcb_keymap_notify_event_t *keymap_notify; |
| 558 | xcb_focus_in_event_t *focus_in; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 559 | xcb_atom_t atom; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 560 | uint32_t *k; |
Kristian Høgsberg | 875ab9e | 2012-03-30 11:52:39 -0400 | [diff] [blame] | 561 | uint32_t i, set; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 562 | |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 563 | prev = NULL; |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 564 | while (x11_compositor_next_event(c, &event, mask)) { |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 565 | switch (prev ? prev->response_type & ~0x80 : 0x80) { |
| 566 | case XCB_KEY_RELEASE: |
| 567 | key_release = (xcb_key_press_event_t *) prev; |
| 568 | key_press = (xcb_key_press_event_t *) event; |
| 569 | if ((event->response_type & ~0x80) == XCB_KEY_PRESS && |
Dima Ryazanov | c224748 | 2011-08-16 17:25:32 -0700 | [diff] [blame] | 570 | key_release->time == key_press->time && |
| 571 | key_release->detail == key_press->detail) { |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 572 | /* Don't deliver the held key release |
| 573 | * event or the new key press event. */ |
| 574 | free(event); |
| 575 | free(prev); |
| 576 | prev = NULL; |
| 577 | continue; |
| 578 | } else { |
| 579 | /* Deliver the held key release now |
| 580 | * and fall through and handle the new |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 581 | * event below. */ |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 582 | notify_key(c->base.input_device, |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 583 | weston_compositor_get_time(), |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 584 | key_release->detail - 8, 0); |
| 585 | free(prev); |
| 586 | prev = NULL; |
| 587 | break; |
| 588 | } |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 589 | |
| 590 | case XCB_FOCUS_IN: |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 591 | /* assert event is keymap_notify */ |
| 592 | focus_in = (xcb_focus_in_event_t *) prev; |
| 593 | keymap_notify = (xcb_keymap_notify_event_t *) event; |
| 594 | c->keys.size = 0; |
| 595 | for (i = 0; i < ARRAY_LENGTH(keymap_notify->keys) * 8; i++) { |
| 596 | set = keymap_notify->keys[i >> 3] & |
| 597 | (1 << (i & 7)); |
| 598 | if (set) { |
| 599 | k = wl_array_add(&c->keys, sizeof *k); |
| 600 | *k = i; |
| 601 | } |
| 602 | } |
| 603 | |
| 604 | output = x11_compositor_find_output(c, focus_in->event); |
Kristian Høgsberg | eae5de7 | 2012-04-11 22:42:15 -0400 | [diff] [blame] | 605 | notify_keyboard_focus(c->base.input_device, &c->keys); |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 606 | |
| 607 | free(prev); |
| 608 | prev = NULL; |
| 609 | break; |
| 610 | |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 611 | default: |
| 612 | /* No previous event held */ |
| 613 | break; |
Kristian Høgsberg | 3ddd148 | 2011-04-15 15:48:07 -0400 | [diff] [blame] | 614 | } |
| 615 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 616 | switch (event->response_type & ~0x80) { |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 617 | case XCB_KEY_PRESS: |
| 618 | key_press = (xcb_key_press_event_t *) event; |
| 619 | notify_key(c->base.input_device, |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 620 | weston_compositor_get_time(), |
Kristian Høgsberg | 293af26 | 2011-10-11 17:23:02 -0400 | [diff] [blame] | 621 | key_press->detail - 8, 1); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 622 | break; |
| 623 | case XCB_KEY_RELEASE: |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 624 | prev = event; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 625 | break; |
| 626 | case XCB_BUTTON_PRESS: |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 627 | x11_compositor_deliver_button_event(c, event, 1); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 628 | break; |
| 629 | case XCB_BUTTON_RELEASE: |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 630 | x11_compositor_deliver_button_event(c, event, 0); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 631 | break; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 632 | case XCB_MOTION_NOTIFY: |
| 633 | motion_notify = (xcb_motion_notify_event_t *) event; |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 634 | output = x11_compositor_find_output(c, motion_notify->event); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 635 | notify_motion(c->base.input_device, |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 636 | weston_compositor_get_time(), |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 637 | output->base.x + motion_notify->event_x, |
| 638 | output->base.y + motion_notify->event_y); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 639 | break; |
| 640 | |
| 641 | case XCB_EXPOSE: |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 642 | /* FIXME: schedule output repaint */ |
| 643 | /* output = x11_compositor_find_output(c, expose->window); */ |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 644 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 645 | weston_compositor_schedule_repaint(&c->base); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 646 | break; |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 647 | |
| 648 | case XCB_ENTER_NOTIFY: |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 649 | enter_notify = (xcb_enter_notify_event_t *) event; |
Kristian Høgsberg | 2dfe626 | 2011-02-08 11:59:53 -0500 | [diff] [blame] | 650 | if (enter_notify->state >= Button1Mask) |
| 651 | break; |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 652 | output = x11_compositor_find_output(c, enter_notify->event); |
| 653 | notify_pointer_focus(c->base.input_device, |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 654 | &output->base, |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 655 | output->base.x + enter_notify->event_x, |
| 656 | output->base.y + enter_notify->event_y); |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 657 | break; |
| 658 | |
| 659 | case XCB_LEAVE_NOTIFY: |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 660 | enter_notify = (xcb_enter_notify_event_t *) event; |
Kristian Høgsberg | 2dfe626 | 2011-02-08 11:59:53 -0500 | [diff] [blame] | 661 | if (enter_notify->state >= Button1Mask) |
| 662 | break; |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 663 | output = x11_compositor_find_output(c, enter_notify->event); |
Kristian Høgsberg | eae5de7 | 2012-04-11 22:42:15 -0400 | [diff] [blame] | 664 | notify_pointer_focus(c->base.input_device, NULL, |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 665 | output->base.x + enter_notify->event_x, |
| 666 | output->base.y + enter_notify->event_y); |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 667 | break; |
| 668 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 669 | case XCB_CLIENT_MESSAGE: |
| 670 | client_message = (xcb_client_message_event_t *) event; |
| 671 | atom = client_message->data.data32[0]; |
| 672 | if (atom == c->atom.wm_delete_window) |
Kristian Høgsberg | 50dc698 | 2010-12-01 16:43:56 -0500 | [diff] [blame] | 673 | wl_display_terminate(c->base.wl_display); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 674 | break; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 675 | |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 676 | case XCB_FOCUS_IN: |
| 677 | focus_in = (xcb_focus_in_event_t *) event; |
| 678 | if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED) |
| 679 | break; |
| 680 | |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 681 | prev = event; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 682 | break; |
| 683 | |
| 684 | case XCB_FOCUS_OUT: |
| 685 | focus_in = (xcb_focus_in_event_t *) event; |
Kristian Høgsberg | 42e40ae | 2011-12-19 14:36:50 -0500 | [diff] [blame] | 686 | if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED || |
| 687 | focus_in->mode == XCB_NOTIFY_MODE_UNGRAB) |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 688 | break; |
Kristian Høgsberg | eae5de7 | 2012-04-11 22:42:15 -0400 | [diff] [blame] | 689 | notify_keyboard_focus(c->base.input_device, NULL); |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 690 | break; |
| 691 | |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 692 | default: |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 693 | break; |
| 694 | } |
| 695 | |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 696 | if (prev != event) |
Kristian Høgsberg | 3ddd148 | 2011-04-15 15:48:07 -0400 | [diff] [blame] | 697 | free (event); |
| 698 | } |
| 699 | |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 700 | switch (prev ? prev->response_type & ~0x80 : 0x80) { |
| 701 | case XCB_KEY_RELEASE: |
| 702 | key_release = (xcb_key_press_event_t *) prev; |
Kristian Høgsberg | 3ddd148 | 2011-04-15 15:48:07 -0400 | [diff] [blame] | 703 | notify_key(c->base.input_device, |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 704 | weston_compositor_get_time(), |
Kristian Høgsberg | 293af26 | 2011-10-11 17:23:02 -0400 | [diff] [blame] | 705 | key_release->detail - 8, 0); |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 706 | free(prev); |
| 707 | prev = NULL; |
| 708 | break; |
| 709 | default: |
| 710 | break; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 711 | } |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 712 | |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 713 | return event != NULL; |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 714 | } |
| 715 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 716 | #define F(field) offsetof(struct x11_compositor, field) |
| 717 | |
| 718 | static void |
| 719 | x11_compositor_get_resources(struct x11_compositor *c) |
| 720 | { |
| 721 | static const struct { const char *name; int offset; } atoms[] = { |
| 722 | { "WM_PROTOCOLS", F(atom.wm_protocols) }, |
| 723 | { "WM_NORMAL_HINTS", F(atom.wm_normal_hints) }, |
| 724 | { "WM_SIZE_HINTS", F(atom.wm_size_hints) }, |
| 725 | { "WM_DELETE_WINDOW", F(atom.wm_delete_window) }, |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 726 | { "WM_CLASS", F(atom.wm_class) }, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 727 | { "_NET_WM_NAME", F(atom.net_wm_name) }, |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 728 | { "_NET_WM_ICON", F(atom.net_wm_icon) }, |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 729 | { "_NET_WM_STATE", F(atom.net_wm_state) }, |
| 730 | { "_NET_WM_STATE_FULLSCREEN", F(atom.net_wm_state_fullscreen) }, |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 731 | { "STRING", F(atom.string) }, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 732 | { "UTF8_STRING", F(atom.utf8_string) }, |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 733 | { "CARDINAL", F(atom.cardinal) }, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 734 | }; |
| 735 | |
Kristian Høgsberg | 09e2692 | 2011-12-23 13:33:45 -0500 | [diff] [blame] | 736 | xcb_intern_atom_cookie_t cookies[ARRAY_LENGTH(atoms)]; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 737 | xcb_intern_atom_reply_t *reply; |
| 738 | xcb_pixmap_t pixmap; |
| 739 | xcb_gc_t gc; |
Kristian Høgsberg | 875ab9e | 2012-03-30 11:52:39 -0400 | [diff] [blame] | 740 | unsigned int i; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 741 | uint8_t data[] = { 0, 0, 0, 0 }; |
| 742 | |
Kristian Høgsberg | 09e2692 | 2011-12-23 13:33:45 -0500 | [diff] [blame] | 743 | for (i = 0; i < ARRAY_LENGTH(atoms); i++) |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 744 | cookies[i] = xcb_intern_atom (c->conn, 0, |
| 745 | strlen(atoms[i].name), |
| 746 | atoms[i].name); |
| 747 | |
Kristian Høgsberg | 09e2692 | 2011-12-23 13:33:45 -0500 | [diff] [blame] | 748 | for (i = 0; i < ARRAY_LENGTH(atoms); i++) { |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 749 | reply = xcb_intern_atom_reply (c->conn, cookies[i], NULL); |
| 750 | *(xcb_atom_t *) ((char *) c + atoms[i].offset) = reply->atom; |
| 751 | free(reply); |
| 752 | } |
| 753 | |
| 754 | pixmap = xcb_generate_id(c->conn); |
| 755 | gc = xcb_generate_id(c->conn); |
| 756 | xcb_create_pixmap(c->conn, 1, pixmap, c->screen->root, 1, 1); |
| 757 | xcb_create_gc(c->conn, gc, pixmap, 0, NULL); |
| 758 | xcb_put_image(c->conn, XCB_IMAGE_FORMAT_XY_PIXMAP, |
| 759 | pixmap, gc, 1, 1, 0, 0, 0, 32, sizeof data, data); |
| 760 | c->null_cursor = xcb_generate_id(c->conn); |
| 761 | xcb_create_cursor (c->conn, c->null_cursor, |
| 762 | pixmap, pixmap, 0, 0, 0, 0, 0, 0, 1, 1); |
| 763 | xcb_free_gc(c->conn, gc); |
| 764 | xcb_free_pixmap(c->conn, pixmap); |
| 765 | } |
| 766 | |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 767 | static void |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 768 | x11_destroy(struct weston_compositor *ec) |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 769 | { |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 770 | struct x11_compositor *compositor = (struct x11_compositor *)ec; |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 771 | |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 772 | wl_event_source_remove(compositor->xcb_source); |
| 773 | x11_input_destroy(compositor); |
| 774 | |
Kristian Høgsberg | 3466bc8 | 2012-01-03 11:29:15 -0500 | [diff] [blame] | 775 | weston_compositor_shutdown(ec); /* destroys outputs, too */ |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 776 | |
| 777 | x11_compositor_fini_egl(compositor); |
| 778 | |
| 779 | XCloseDisplay(compositor->dpy); |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 780 | free(ec); |
| 781 | } |
| 782 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 783 | static struct weston_compositor * |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 784 | x11_compositor_create(struct wl_display *display, |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 785 | int width, int height, int count, int fullscreen) |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 786 | { |
| 787 | struct x11_compositor *c; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 788 | xcb_screen_iterator_t s; |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 789 | int i, x; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 790 | |
| 791 | c = malloc(sizeof *c); |
| 792 | if (c == NULL) |
| 793 | return NULL; |
| 794 | |
| 795 | memset(c, 0, sizeof *c); |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 796 | |
| 797 | c->dpy = XOpenDisplay(NULL); |
Cyril Brulebois | 2079829 | 2011-04-06 18:05:40 +0200 | [diff] [blame] | 798 | if (c->dpy == NULL) |
| 799 | return NULL; |
| 800 | |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 801 | c->conn = XGetXCBConnection(c->dpy); |
Benjamin Franzke | e997c5f | 2011-03-25 14:06:37 +0100 | [diff] [blame] | 802 | XSetEventQueueOwner(c->dpy, XCBOwnsEventQueue); |
| 803 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 804 | if (xcb_connection_has_error(c->conn)) |
| 805 | return NULL; |
| 806 | |
| 807 | s = xcb_setup_roots_iterator(xcb_get_setup(c->conn)); |
| 808 | c->screen = s.data; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 809 | wl_array_init(&c->keys); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 810 | |
| 811 | x11_compositor_get_resources(c); |
| 812 | |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 813 | c->base.wl_display = display; |
Tiago Vignatti | 997ce64 | 2010-11-10 02:42:35 +0200 | [diff] [blame] | 814 | if (x11_compositor_init_egl(c) < 0) |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 815 | return NULL; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 816 | |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 817 | c->base.destroy = x11_destroy; |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 818 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 819 | /* Can't init base class until we have a current egl context */ |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 820 | if (weston_compositor_init(&c->base, display) < 0) |
Kristian Høgsberg | a946821 | 2010-06-14 21:03:11 -0400 | [diff] [blame] | 821 | return NULL; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 822 | |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 823 | for (i = 0, x = 0; i < count; i++) { |
| 824 | if (x11_compositor_create_output(c, x, 0, width, height, |
| 825 | fullscreen) < 0) |
| 826 | return NULL; |
| 827 | x += width; |
| 828 | } |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 829 | |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 830 | if (x11_input_create(c) < 0) |
| 831 | return NULL; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 832 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 833 | c->xcb_source = |
Kristian Høgsberg | 22ba60e | 2012-03-12 01:18:24 -0400 | [diff] [blame] | 834 | wl_event_loop_add_fd(c->base.input_loop, |
| 835 | xcb_get_file_descriptor(c->conn), |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 836 | WL_EVENT_READABLE, |
| 837 | x11_compositor_handle_event, c); |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 838 | wl_event_source_check(c->xcb_source); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 839 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 840 | return &c->base; |
| 841 | } |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 842 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 843 | WL_EXPORT struct weston_compositor * |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 844 | backend_init(struct wl_display *display, int argc, char *argv[]) |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 845 | { |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 846 | int width = 1024, height = 640, fullscreen = 0, count = 1; |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 847 | |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 848 | const struct weston_option x11_options[] = { |
| 849 | { WESTON_OPTION_INTEGER, "width", 0, &width }, |
| 850 | { WESTON_OPTION_INTEGER, "height", 0, &height }, |
| 851 | { WESTON_OPTION_BOOLEAN, "fullscreen", 0, &fullscreen }, |
| 852 | { WESTON_OPTION_INTEGER, "output-count", 0, &count }, |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 853 | }; |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 854 | |
| 855 | parse_options(x11_options, ARRAY_LENGTH(x11_options), argc, argv); |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 856 | |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 857 | return x11_compositor_create(display, |
| 858 | width, height, count, fullscreen); |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 859 | } |