blob: 5aa1ebfc08c3872acde2040719fbf819dea68111 [file] [log] [blame]
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001/*
Kristian Høgsberg96aa7da2011-09-15 15:43:14 -04002 * Copyright © 2008-2011 Kristian Høgsberg
3 * Copyright © 2010-2011 Intel Corporation
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04004 *
Kristian Høgsberg96aa7da2011-09-15 15:43:14 -04005 * Permission to use, copy, modify, distribute, and sell this software and
6 * its documentation for any purpose is hereby granted without fee, provided
7 * that the above copyright notice appear in all copies and that both that
8 * copyright notice and this permission notice appear in supporting
9 * documentation, and that the name of the copyright holders not be used in
10 * advertising or publicity pertaining to distribution of the software
11 * without specific, written prior permission. The copyright holders make
12 * no representations about the suitability of this software for any
13 * purpose. It is provided "as is" without express or implied warranty.
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040014 *
Kristian Høgsberg96aa7da2011-09-15 15:43:14 -040015 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
16 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
20 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040022 */
23
Chia-I Wu1b6c0ed2010-10-29 15:20:18 +080024#ifdef HAVE_CONFIG_H
25#include <config.h>
26#endif
27
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040028#include <stddef.h>
29#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
32#include <fcntl.h>
33#include <unistd.h>
34#include <errno.h>
35#include <sys/time.h>
Kristian Høgsbergf9112b22010-06-14 12:53:43 -040036#include <linux/input.h>
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040037
38#include <xcb/xcb.h>
Benjamin Franzke3b288af2011-02-20 19:58:42 +010039#include <X11/Xlib.h>
40#include <X11/Xlib-xcb.h>
41
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040042#include <GLES2/gl2.h>
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040043#include <EGL/egl.h>
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040044
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040045#include "compositor.h"
46
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040047struct x11_compositor {
48 struct wlsc_compositor base;
49
Benjamin Franzke3b288af2011-02-20 19:58:42 +010050 Display *dpy;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040051 xcb_connection_t *conn;
52 xcb_screen_t *screen;
53 xcb_cursor_t null_cursor;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -050054 struct wl_array keys;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040055 struct wl_event_source *xcb_source;
56 struct {
57 xcb_atom_t wm_protocols;
58 xcb_atom_t wm_normal_hints;
59 xcb_atom_t wm_size_hints;
60 xcb_atom_t wm_delete_window;
Kristian Høgsberg24ed6212011-01-26 14:02:31 -050061 xcb_atom_t wm_class;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040062 xcb_atom_t net_wm_name;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -050063 xcb_atom_t net_wm_icon;
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -040064 xcb_atom_t net_wm_state;
65 xcb_atom_t net_wm_state_fullscreen;
Kristian Høgsberg24ed6212011-01-26 14:02:31 -050066 xcb_atom_t string;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040067 xcb_atom_t utf8_string;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -050068 xcb_atom_t cardinal;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040069 } atom;
70};
71
72struct x11_output {
73 struct wlsc_output base;
74
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040075 xcb_window_t window;
Benjamin Franzke84290d02011-03-02 10:07:59 +010076 EGLSurface egl_surface;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -040077 struct wlsc_mode mode;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -040078 struct wl_event_source *finish_frame_timer;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040079};
80
81struct x11_input {
82 struct wlsc_input_device base;
83};
84
85
Darxus55973f22010-11-22 21:24:39 -050086static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040087x11_input_create(struct x11_compositor *c)
88{
89 struct x11_input *input;
90
91 input = malloc(sizeof *input);
92 if (input == NULL)
Darxus55973f22010-11-22 21:24:39 -050093 return -1;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040094
95 memset(input, 0, sizeof *input);
96 wlsc_input_device_init(&input->base, &c->base);
97
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -050098 c->base.input_device = &input->base.input_device;
Darxus55973f22010-11-22 21:24:39 -050099
100 return 0;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400101}
102
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400103static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400104x11_compositor_init_egl(struct x11_compositor *c)
105{
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400106 EGLint major, minor;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100107 EGLint n;
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400108 const char *extensions;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100109 EGLint config_attribs[] = {
110 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
111 EGL_RED_SIZE, 1,
112 EGL_GREEN_SIZE, 1,
113 EGL_BLUE_SIZE, 1,
114 EGL_DEPTH_SIZE, 1,
115 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
116 EGL_NONE
117 };
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400118 static const EGLint context_attribs[] = {
119 EGL_CONTEXT_CLIENT_VERSION, 2,
120 EGL_NONE
121 };
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400122
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100123 c->base.display = eglGetDisplay(c->dpy);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400124 if (c->base.display == NULL) {
125 fprintf(stderr, "failed to create display\n");
126 return -1;
127 }
128
129 if (!eglInitialize(c->base.display, &major, &minor)) {
130 fprintf(stderr, "failed to initialize display\n");
131 return -1;
132 }
133
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400134 extensions = eglQueryString(c->base.display, EGL_EXTENSIONS);
Ander Conselvan de Oliveiraef7c8d92011-11-01 16:37:41 +0200135 if (!strstr(extensions, "EGL_KHR_surfaceless_gles2")) {
136 fprintf(stderr, "EGL_KHR_surfaceless_gles2 not available\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400137 return -1;
138 }
139
Darxus55973f22010-11-22 21:24:39 -0500140 if (!eglBindAPI(EGL_OPENGL_ES_API)) {
141 fprintf(stderr, "failed to bind EGL_OPENGL_ES_API\n");
142 return -1;
143 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100144 if (!eglChooseConfig(c->base.display, config_attribs,
145 &c->base.config, 1, &n) || n == 0) {
146 fprintf(stderr, "failed to choose config: %d\n", n);
147 return -1;
148 }
Darxus55973f22010-11-22 21:24:39 -0500149
Benjamin Franzke84290d02011-03-02 10:07:59 +0100150 c->base.context = eglCreateContext(c->base.display, c->base.config,
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400151 EGL_NO_CONTEXT, context_attribs);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400152 if (c->base.context == NULL) {
153 fprintf(stderr, "failed to create context\n");
154 return -1;
155 }
156
157 if (!eglMakeCurrent(c->base.display, EGL_NO_SURFACE,
158 EGL_NO_SURFACE, c->base.context)) {
159 fprintf(stderr, "failed to make context current\n");
160 return -1;
161 }
162
163 return 0;
164}
165
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100166static int
167x11_output_prepare_render(struct wlsc_output *output_base)
168{
169 struct x11_output *output = (struct x11_output *) output_base;
170 struct wlsc_compositor *ec = output->base.compositor;
171
172 if (!eglMakeCurrent(ec->display, output->egl_surface,
173 output->egl_surface, ec->context)) {
174 fprintf(stderr, "failed to make current\n");
175 return -1;
176 }
177
178 return 0;
179}
180
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100181static int
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400182finish_frame_handler(void *data)
183{
184 struct x11_output *output = data;
185 uint32_t msec;
186 struct timeval tv;
187
188 gettimeofday(&tv, NULL);
189 msec = tv.tv_sec * 1000 + tv.tv_usec / 1000;
190 wlsc_output_finish_frame(&output->base, msec);
191
192 return 1;
193}
194
195static int
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100196x11_output_present(struct wlsc_output *output_base)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400197{
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100198 struct x11_output *output = (struct x11_output *) output_base;
199 struct wlsc_compositor *ec = output->base.compositor;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400200
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100201 if (x11_output_prepare_render(&output->base))
202 return -1;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100203
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100204 eglSwapBuffers(ec->display, output->egl_surface);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400205
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400206 wl_event_source_timer_update(output->finish_frame_timer, 10);
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100207
208 return 0;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400209}
210
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200211static int
Benjamin Franzke66aa2352011-04-20 17:06:13 +0200212x11_output_prepare_scanout_surface(struct wlsc_output *output_base,
213 struct wlsc_surface *es)
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200214{
Benjamin Franzke66aa2352011-04-20 17:06:13 +0200215 return -1;
Benjamin Franzke1178a3c2011-04-10 16:49:52 +0200216}
217
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200218static int
219x11_output_set_cursor(struct wlsc_output *output_base,
Kristian Høgsberge4c40a42011-05-06 14:04:21 -0400220 struct wlsc_input_device *input)
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200221{
222 return -1;
223}
224
Matt Roper361d2ad2011-08-29 13:52:23 -0700225static void
226x11_output_destroy(struct wlsc_output *output_base)
227{
228 return;
229}
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200230
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400231static void
232x11_output_set_wm_protocols(struct x11_output *output)
233{
234 xcb_atom_t list[1];
235 struct x11_compositor *c =
236 (struct x11_compositor *) output->base.compositor;
237
238 list[0] = c->atom.wm_delete_window;
239 xcb_change_property (c->conn,
240 XCB_PROP_MODE_REPLACE,
241 output->window,
242 c->atom.wm_protocols,
243 XCB_ATOM_ATOM,
244 32,
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500245 ARRAY_LENGTH(list),
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400246 list);
247}
248
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400249static void
250x11_output_change_state(struct x11_output *output, int add, xcb_atom_t state)
251{
252 xcb_client_message_event_t event;
253 struct x11_compositor *c =
254 (struct x11_compositor *) output->base.compositor;
255 xcb_screen_iterator_t iter;
256
257#define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
258#define _NET_WM_STATE_ADD 1 /* add/set property */
259#define _NET_WM_STATE_TOGGLE 2 /* toggle property */
260
261 memset(&event, 0, sizeof event);
262 event.response_type = XCB_CLIENT_MESSAGE;
263 event.format = 32;
264 event.window = output->window;
265 event.type = c->atom.net_wm_state;
266
267 event.data.data32[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
268 event.data.data32[1] = state;
269 event.data.data32[2] = 0;
270 event.data.data32[3] = 0;
271 event.data.data32[4] = 0;
272
273 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
274 xcb_send_event(c->conn, 0, iter.data->root,
275 XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY |
276 XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT,
277 (void *) &event);
278}
279
280
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400281struct wm_normal_hints {
282 uint32_t flags;
283 uint32_t pad[4];
284 int32_t min_width, min_height;
285 int32_t max_width, max_height;
286 int32_t width_inc, height_inc;
287 int32_t min_aspect_x, min_aspect_y;
288 int32_t max_aspect_x, max_aspect_y;
289 int32_t base_width, base_height;
290 int32_t win_gravity;
291};
292
293#define WM_NORMAL_HINTS_MIN_SIZE 16
294#define WM_NORMAL_HINTS_MAX_SIZE 32
295
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500296static void
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400297x11_output_set_icon(struct x11_compositor *c,
298 struct x11_output *output, const char *filename)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500299{
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400300 uint32_t *icon, *pixels, stride;
301 int32_t width, height;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500302
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400303 pixels = wlsc_load_image(filename, &width, &height, &stride);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500304 if (!pixels)
305 return;
306 icon = malloc(width * height * 4 + 8);
307 if (!icon) {
308 free(pixels);
309 return;
310 }
311
312 icon[0] = width;
313 icon[1] = height;
314 memcpy(icon + 2, pixels, width * height * 4);
315 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
316 c->atom.net_wm_icon, c->atom.cardinal, 32,
317 width * height + 2, icon);
318 free(icon);
319 free(pixels);
320}
321
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400322static int
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700323x11_compositor_create_output(struct x11_compositor *c, int x, int y,
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400324 int width, int height, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400325{
326 static const char name[] = "Wayland Compositor";
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500327 static const char class[] = "wayland-1\0Wayland Compositor";
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400328 struct x11_output *output;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400329 xcb_screen_iterator_t iter;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400330 struct wm_normal_hints normal_hints;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400331 struct wl_event_loop *loop;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400332 uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_CURSOR;
333 uint32_t values[2] = {
334 XCB_EVENT_MASK_KEY_PRESS |
335 XCB_EVENT_MASK_KEY_RELEASE |
336 XCB_EVENT_MASK_BUTTON_PRESS |
337 XCB_EVENT_MASK_BUTTON_RELEASE |
338 XCB_EVENT_MASK_POINTER_MOTION |
339 XCB_EVENT_MASK_EXPOSURE |
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400340 XCB_EVENT_MASK_STRUCTURE_NOTIFY |
341 XCB_EVENT_MASK_ENTER_WINDOW |
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500342 XCB_EVENT_MASK_LEAVE_WINDOW |
343 XCB_EVENT_MASK_KEYMAP_STATE |
344 XCB_EVENT_MASK_FOCUS_CHANGE,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400345 0
346 };
347
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400348 output = malloc(sizeof *output);
349 if (output == NULL)
350 return -1;
351
352 memset(output, 0, sizeof *output);
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -0400353
354 output->mode.flags =
355 WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
356 output->mode.width = width;
357 output->mode.height = height;
358 output->mode.refresh = 60;
359 wl_list_init(&output->base.mode_list);
360 wl_list_insert(&output->base.mode_list, &output->mode.link);
361
362 output->base.current = &output->mode;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700363 wlsc_output_init(&output->base, &c->base, x, y, width, height,
Benjamin Franzke84290d02011-03-02 10:07:59 +0100364 WL_OUTPUT_FLIPPED);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400365
366 values[1] = c->null_cursor;
367 output->window = xcb_generate_id(c->conn);
368 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
369 xcb_create_window(c->conn,
370 XCB_COPY_FROM_PARENT,
371 output->window,
372 iter.data->root,
373 0, 0,
374 width, height,
375 0,
376 XCB_WINDOW_CLASS_INPUT_OUTPUT,
377 iter.data->root_visual,
378 mask, values);
379
380 /* Don't resize me. */
381 memset(&normal_hints, 0, sizeof normal_hints);
382 normal_hints.flags =
383 WM_NORMAL_HINTS_MAX_SIZE | WM_NORMAL_HINTS_MIN_SIZE;
384 normal_hints.min_width = width;
385 normal_hints.min_height = height;
386 normal_hints.max_width = width;
387 normal_hints.max_height = height;
388 xcb_change_property (c->conn, XCB_PROP_MODE_REPLACE, output->window,
389 c->atom.wm_normal_hints,
390 c->atom.wm_size_hints, 32,
391 sizeof normal_hints / 4,
392 (uint8_t *) &normal_hints);
393
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400394 /* Set window name. Don't bother with non-EWMH WMs. */
395 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
396 c->atom.net_wm_name, c->atom.utf8_string, 8,
397 strlen(name), name);
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500398 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
399 c->atom.wm_class, c->atom.string, 8,
400 sizeof class, class);
401
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400402 x11_output_set_icon(c, output, DATADIR "/wayland/wayland.png");
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500403
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500404 xcb_map_window(c->conn, output->window);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400405
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400406 x11_output_set_wm_protocols(output);
407
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400408 if (fullscreen)
409 x11_output_change_state(output, 1,
410 c->atom.net_wm_state_fullscreen);
411
Benjamin Franzke84290d02011-03-02 10:07:59 +0100412 output->egl_surface =
413 eglCreateWindowSurface(c->base.display, c->base.config,
414 output->window, NULL);
415 if (!output->egl_surface) {
416 fprintf(stderr, "failed to create window surface\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400417 return -1;
418 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100419 if (!eglMakeCurrent(c->base.display, output->egl_surface,
420 output->egl_surface, c->base.context)) {
421 fprintf(stderr, "failed to make surface current\n");
422 return -1;
423 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400424
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400425 loop = wl_display_get_event_loop(c->base.wl_display);
426 output->finish_frame_timer =
427 wl_event_loop_add_timer(loop, finish_frame_handler, output);
428
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100429 output->base.prepare_render = x11_output_prepare_render;
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100430 output->base.present = x11_output_present;
Benjamin Franzke66aa2352011-04-20 17:06:13 +0200431 output->base.prepare_scanout_surface =
432 x11_output_prepare_scanout_surface;
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200433 output->base.set_hardware_cursor = x11_output_set_cursor;
Matt Roper361d2ad2011-08-29 13:52:23 -0700434 output->base.destroy = x11_output_destroy;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100435
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400436 wl_list_insert(c->base.output_list.prev, &output->base.link);
437
438 return 0;
439}
440
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400441static struct x11_output *
442x11_compositor_find_output(struct x11_compositor *c, xcb_window_t window)
443{
444 struct x11_output *output;
445
446 wl_list_for_each(output, &c->base.output_list, base.link) {
447 if (output->window == window)
448 return output;
449 }
450
451 return NULL;
452}
453
Tiago Vignattia3a71622011-12-08 17:03:17 +0200454static void
455x11_compositor_deliver_button_event(struct x11_compositor *c,
456 xcb_generic_event_t *event, int state)
457{
458 xcb_button_press_event_t *button_event =
459 (xcb_button_press_event_t *) event;
460 int button;
461
462 switch (button_event->detail) {
463 default:
464 button = button_event->detail + BTN_LEFT - 1;
465 break;
466 case 2:
467 button = BTN_MIDDLE;
468 break;
469 case 3:
470 button = BTN_RIGHT;
471 break;
472 case 4:
473 case 5:
474 case 6:
475 case 7:
476 /* X11 sends wheel events as buttons events. But
477 * linux input treats as REL_WHEEL, therefore not
478 * button type at all. When we update the input
479 * protocol and get the 'axis' event, we'll send
480 * scroll events as axis events. */
481 return;
482 }
483
484 notify_button(c->base.input_device,
485 wlsc_compositor_get_time(), button, state);
486}
487
Kristian Høgsbergee724822011-04-21 14:51:44 -0400488static int
489x11_compositor_next_event(struct x11_compositor *c,
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400490 xcb_generic_event_t **event, uint32_t mask)
Kristian Høgsbergee724822011-04-21 14:51:44 -0400491{
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400492 if (mask & WL_EVENT_READABLE) {
493 *event = xcb_poll_for_event(c->conn);
Kristian Høgsbergee724822011-04-21 14:51:44 -0400494 } else {
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400495#ifdef HAVE_XCB_POLL_FOR_QUEUED_EVENT
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400496 *event = xcb_poll_for_queued_event(c->conn);
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400497#else
498 *event = xcb_poll_for_event(c->conn);
499#endif
Kristian Høgsbergee724822011-04-21 14:51:44 -0400500 }
501
502 return *event != NULL;
503}
504
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400505static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400506x11_compositor_handle_event(int fd, uint32_t mask, void *data)
507{
508 struct x11_compositor *c = data;
509 struct x11_output *output;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400510 xcb_generic_event_t *event, *prev;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400511 xcb_client_message_event_t *client_message;
512 xcb_motion_notify_event_t *motion_notify;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500513 xcb_enter_notify_event_t *enter_notify;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400514 xcb_key_press_event_t *key_press, *key_release;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500515 xcb_keymap_notify_event_t *keymap_notify;
516 xcb_focus_in_event_t *focus_in;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400517 xcb_atom_t atom;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500518 uint32_t *k;
519 int i, set;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400520
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400521 prev = NULL;
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400522 while (x11_compositor_next_event(c, &event, mask)) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400523 switch (prev ? prev->response_type & ~0x80 : 0x80) {
524 case XCB_KEY_RELEASE:
525 key_release = (xcb_key_press_event_t *) prev;
526 key_press = (xcb_key_press_event_t *) event;
527 if ((event->response_type & ~0x80) == XCB_KEY_PRESS &&
Dima Ryazanovc2247482011-08-16 17:25:32 -0700528 key_release->time == key_press->time &&
529 key_release->detail == key_press->detail) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400530 /* Don't deliver the held key release
531 * event or the new key press event. */
532 free(event);
533 free(prev);
534 prev = NULL;
535 continue;
536 } else {
537 /* Deliver the held key release now
538 * and fall through and handle the new
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400539 * event below. */
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400540 notify_key(c->base.input_device,
Kristian Høgsberg293af262011-10-11 17:23:02 -0400541 wlsc_compositor_get_time(),
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400542 key_release->detail - 8, 0);
543 free(prev);
544 prev = NULL;
545 break;
546 }
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400547
548 case XCB_FOCUS_IN:
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400549 /* assert event is keymap_notify */
550 focus_in = (xcb_focus_in_event_t *) prev;
551 keymap_notify = (xcb_keymap_notify_event_t *) event;
552 c->keys.size = 0;
553 for (i = 0; i < ARRAY_LENGTH(keymap_notify->keys) * 8; i++) {
554 set = keymap_notify->keys[i >> 3] &
555 (1 << (i & 7));
556 if (set) {
557 k = wl_array_add(&c->keys, sizeof *k);
558 *k = i;
559 }
560 }
561
562 output = x11_compositor_find_output(c, focus_in->event);
563 notify_keyboard_focus(c->base.input_device,
Kristian Høgsberg02ec0a52011-04-23 13:04:11 -0400564 wlsc_compositor_get_time(),
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400565 &output->base, &c->keys);
566
567 free(prev);
568 prev = NULL;
569 break;
570
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400571 default:
572 /* No previous event held */
573 break;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400574 }
575
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400576 switch (event->response_type & ~0x80) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400577 case XCB_KEY_PRESS:
578 key_press = (xcb_key_press_event_t *) event;
579 notify_key(c->base.input_device,
Kristian Høgsberg293af262011-10-11 17:23:02 -0400580 wlsc_compositor_get_time(),
581 key_press->detail - 8, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400582 break;
583 case XCB_KEY_RELEASE:
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400584 prev = event;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400585 break;
586 case XCB_BUTTON_PRESS:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200587 x11_compositor_deliver_button_event(c, event, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400588 break;
589 case XCB_BUTTON_RELEASE:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200590 x11_compositor_deliver_button_event(c, event, 0);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400591 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400592 case XCB_MOTION_NOTIFY:
593 motion_notify = (xcb_motion_notify_event_t *) event;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700594 output = x11_compositor_find_output(c, motion_notify->event);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400595 notify_motion(c->base.input_device,
Kristian Høgsberg293af262011-10-11 17:23:02 -0400596 wlsc_compositor_get_time(),
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700597 output->base.x + motion_notify->event_x,
598 output->base.y + motion_notify->event_y);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400599 break;
600
601 case XCB_EXPOSE:
Benjamin Franzke84290d02011-03-02 10:07:59 +0100602 /* FIXME: schedule output repaint */
603 /* output = x11_compositor_find_output(c, expose->window); */
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400604
Benjamin Franzke84290d02011-03-02 10:07:59 +0100605 wlsc_compositor_schedule_repaint(&c->base);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400606 break;
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400607
608 case XCB_ENTER_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500609 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500610 if (enter_notify->state >= Button1Mask)
611 break;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500612 output = x11_compositor_find_output(c, enter_notify->event);
613 notify_pointer_focus(c->base.input_device,
Kristian Høgsberg293af262011-10-11 17:23:02 -0400614 wlsc_compositor_get_time(),
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500615 &output->base,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700616 output->base.x + enter_notify->event_x,
617 output->base.y + enter_notify->event_y);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400618 break;
619
620 case XCB_LEAVE_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500621 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500622 if (enter_notify->state >= Button1Mask)
623 break;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700624 output = x11_compositor_find_output(c, enter_notify->event);
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500625 notify_pointer_focus(c->base.input_device,
Kristian Høgsberg293af262011-10-11 17:23:02 -0400626 wlsc_compositor_get_time(),
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500627 NULL,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700628 output->base.x + enter_notify->event_x,
629 output->base.y + enter_notify->event_y);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400630 break;
631
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400632 case XCB_CLIENT_MESSAGE:
633 client_message = (xcb_client_message_event_t *) event;
634 atom = client_message->data.data32[0];
635 if (atom == c->atom.wm_delete_window)
Kristian Høgsberg50dc6982010-12-01 16:43:56 -0500636 wl_display_terminate(c->base.wl_display);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400637 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400638
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500639 case XCB_FOCUS_IN:
640 focus_in = (xcb_focus_in_event_t *) event;
641 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED)
642 break;
643
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400644 prev = event;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500645 break;
646
647 case XCB_FOCUS_OUT:
648 focus_in = (xcb_focus_in_event_t *) event;
Kristian Høgsberg42e40ae2011-12-19 14:36:50 -0500649 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED ||
650 focus_in->mode == XCB_NOTIFY_MODE_UNGRAB)
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500651 break;
652 notify_keyboard_focus(c->base.input_device,
Kristian Høgsberg02ec0a52011-04-23 13:04:11 -0400653 wlsc_compositor_get_time(),
654 NULL, NULL);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500655 break;
656
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500657 default:
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400658 break;
659 }
660
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400661 if (prev != event)
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400662 free (event);
663 }
664
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400665 switch (prev ? prev->response_type & ~0x80 : 0x80) {
666 case XCB_KEY_RELEASE:
667 key_release = (xcb_key_press_event_t *) prev;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400668 notify_key(c->base.input_device,
Kristian Høgsberg293af262011-10-11 17:23:02 -0400669 wlsc_compositor_get_time(),
670 key_release->detail - 8, 0);
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400671 free(prev);
672 prev = NULL;
673 break;
674 default:
675 break;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500676 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400677
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400678 return event != NULL;
Kristian Høgsbergee724822011-04-21 14:51:44 -0400679}
680
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400681#define F(field) offsetof(struct x11_compositor, field)
682
683static void
684x11_compositor_get_resources(struct x11_compositor *c)
685{
686 static const struct { const char *name; int offset; } atoms[] = {
687 { "WM_PROTOCOLS", F(atom.wm_protocols) },
688 { "WM_NORMAL_HINTS", F(atom.wm_normal_hints) },
689 { "WM_SIZE_HINTS", F(atom.wm_size_hints) },
690 { "WM_DELETE_WINDOW", F(atom.wm_delete_window) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500691 { "WM_CLASS", F(atom.wm_class) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400692 { "_NET_WM_NAME", F(atom.net_wm_name) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500693 { "_NET_WM_ICON", F(atom.net_wm_icon) },
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400694 { "_NET_WM_STATE", F(atom.net_wm_state) },
695 { "_NET_WM_STATE_FULLSCREEN", F(atom.net_wm_state_fullscreen) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500696 { "STRING", F(atom.string) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400697 { "UTF8_STRING", F(atom.utf8_string) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500698 { "CARDINAL", F(atom.cardinal) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400699 };
700
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500701 xcb_intern_atom_cookie_t cookies[ARRAY_LENGTH(atoms)];
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400702 xcb_intern_atom_reply_t *reply;
703 xcb_pixmap_t pixmap;
704 xcb_gc_t gc;
705 int i;
706 uint8_t data[] = { 0, 0, 0, 0 };
707
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500708 for (i = 0; i < ARRAY_LENGTH(atoms); i++)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400709 cookies[i] = xcb_intern_atom (c->conn, 0,
710 strlen(atoms[i].name),
711 atoms[i].name);
712
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500713 for (i = 0; i < ARRAY_LENGTH(atoms); i++) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400714 reply = xcb_intern_atom_reply (c->conn, cookies[i], NULL);
715 *(xcb_atom_t *) ((char *) c + atoms[i].offset) = reply->atom;
716 free(reply);
717 }
718
719 pixmap = xcb_generate_id(c->conn);
720 gc = xcb_generate_id(c->conn);
721 xcb_create_pixmap(c->conn, 1, pixmap, c->screen->root, 1, 1);
722 xcb_create_gc(c->conn, gc, pixmap, 0, NULL);
723 xcb_put_image(c->conn, XCB_IMAGE_FORMAT_XY_PIXMAP,
724 pixmap, gc, 1, 1, 0, 0, 0, 32, sizeof data, data);
725 c->null_cursor = xcb_generate_id(c->conn);
726 xcb_create_cursor (c->conn, c->null_cursor,
727 pixmap, pixmap, 0, 0, 0, 0, 0, 0, 1, 1);
728 xcb_free_gc(c->conn, gc);
729 xcb_free_pixmap(c->conn, pixmap);
730}
731
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500732static void
733x11_destroy(struct wlsc_compositor *ec)
734{
Matt Roper361d2ad2011-08-29 13:52:23 -0700735 wlsc_compositor_shutdown(ec);
736
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500737 free(ec);
738}
739
Kristian Høgsberg6c709a32011-05-06 14:52:41 -0400740static struct wlsc_compositor *
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400741x11_compositor_create(struct wl_display *display,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700742 int width, int height, int count, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400743{
744 struct x11_compositor *c;
745 struct wl_event_loop *loop;
746 xcb_screen_iterator_t s;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700747 int i, x;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400748
749 c = malloc(sizeof *c);
750 if (c == NULL)
751 return NULL;
752
753 memset(c, 0, sizeof *c);
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100754
755 c->dpy = XOpenDisplay(NULL);
Cyril Brulebois20798292011-04-06 18:05:40 +0200756 if (c->dpy == NULL)
757 return NULL;
758
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100759 c->conn = XGetXCBConnection(c->dpy);
Benjamin Franzkee997c5f2011-03-25 14:06:37 +0100760 XSetEventQueueOwner(c->dpy, XCBOwnsEventQueue);
761
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400762 if (xcb_connection_has_error(c->conn))
763 return NULL;
764
765 s = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
766 c->screen = s.data;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500767 wl_array_init(&c->keys);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400768
769 x11_compositor_get_resources(c);
770
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400771 c->base.wl_display = display;
Tiago Vignatti997ce642010-11-10 02:42:35 +0200772 if (x11_compositor_init_egl(c) < 0)
Darxus55973f22010-11-22 21:24:39 -0500773 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400774
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500775 c->base.destroy = x11_destroy;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500776
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400777 /* Can't init base class until we have a current egl context */
Kristian Høgsberga9468212010-06-14 21:03:11 -0400778 if (wlsc_compositor_init(&c->base, display) < 0)
779 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400780
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700781 for (i = 0, x = 0; i < count; i++) {
782 if (x11_compositor_create_output(c, x, 0, width, height,
783 fullscreen) < 0)
784 return NULL;
785 x += width;
786 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400787
Darxus55973f22010-11-22 21:24:39 -0500788 if (x11_input_create(c) < 0)
789 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400790
791 loop = wl_display_get_event_loop(c->base.wl_display);
792
793 c->xcb_source =
794 wl_event_loop_add_fd(loop, xcb_get_file_descriptor(c->conn),
795 WL_EVENT_READABLE,
796 x11_compositor_handle_event, c);
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400797 wl_event_source_check(c->xcb_source);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400798
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400799 return &c->base;
800}
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400801
802struct wlsc_compositor *
Kristian Høgsberg6c709a32011-05-06 14:52:41 -0400803backend_init(struct wl_display *display, char *options);
804
805WL_EXPORT struct wlsc_compositor *
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400806backend_init(struct wl_display *display, char *options)
807{
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700808 int width = 1024, height = 640, fullscreen = 0, count = 1, i;
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400809 char *p, *value;
810
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400811 static char * const tokens[] = {
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700812 "width", "height", "fullscreen", "output-count", NULL
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400813 };
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400814
815 p = options;
816 while (i = getsubopt(&p, tokens, &value), i != -1) {
817 switch (i) {
818 case 0:
819 width = strtol(value, NULL, 0);
820 break;
821 case 1:
822 height = strtol(value, NULL, 0);
823 break;
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400824 case 2:
825 fullscreen = 1;
826 break;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700827 case 3:
828 count = strtol(value, NULL, 0);
829 break;
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400830 }
831 }
832
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700833 return x11_compositor_create(display,
834 width, height, count, fullscreen);
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400835}