2 * Copyright © 2008 Kristian Høgsberg
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30 #include <sys/ioctl.h>
35 #include <linux/input.h>
40 #include "wayland-server.h"
41 #include "compositor.h"
43 /* The plan here is to generate a random anonymous socket name and
44 * advertise that through a service on the session dbus.
46 static const char *option_socket_name = NULL;
47 static const char *option_background = "background.png";
48 static int option_idle_time = 300;
50 static struct wl_list child_process_list;
53 sigchld_handler(int signal_number, void *data)
55 struct wlsc_process *p;
60 wl_list_for_each(p, &child_process_list, link) {
65 if (&p->link == &child_process_list) {
66 fprintf(stderr, "unknown child process exited\n");
70 wl_list_remove(&p->link);
71 p->cleanup(p, status);
77 wlsc_watch_process(struct wlsc_process *process)
79 wl_list_insert(&child_process_list, &process->link);
83 wlsc_matrix_init(struct wlsc_matrix *matrix)
85 static const struct wlsc_matrix identity = {
86 { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 }
89 memcpy(matrix, &identity, sizeof identity);
93 wlsc_matrix_multiply(struct wlsc_matrix *m, const struct wlsc_matrix *n)
95 struct wlsc_matrix tmp;
96 const GLfloat *row, *column;
100 for (i = 0; i < 16; i++) {
103 row = m->d + d.quot * 4;
104 column = n->d + d.rem;
105 for (j = 0; j < 4; j++)
106 tmp.d[i] += row[j] * column[j * 4];
108 memcpy(m, &tmp, sizeof tmp);
112 wlsc_matrix_translate(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z)
114 struct wlsc_matrix translate = {
115 { 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, x, y, z, 1 }
118 wlsc_matrix_multiply(matrix, &translate);
122 wlsc_matrix_scale(struct wlsc_matrix *matrix, GLfloat x, GLfloat y, GLfloat z)
124 struct wlsc_matrix scale = {
125 { x, 0, 0, 0, 0, y, 0, 0, 0, 0, z, 0, 0, 0, 0, 1 }
128 wlsc_matrix_multiply(matrix, &scale);
132 wlsc_matrix_transform(struct wlsc_matrix *matrix, struct wlsc_vector *v)
135 struct wlsc_vector t;
137 for (i = 0; i < 4; i++) {
139 for (j = 0; j < 4; j++)
140 t.f[i] += v->f[j] * matrix->d[i + j * 4];
147 wlsc_spring_init(struct wlsc_spring *spring,
148 double k, double current, double target)
151 spring->friction = 100.0;
152 spring->current = current;
153 spring->previous = current;
154 spring->target = target;
158 wlsc_spring_update(struct wlsc_spring *spring, uint32_t msec)
160 double force, v, current, step;
162 step = (msec - spring->timestamp) / 300.0;
163 spring->timestamp = msec;
165 current = spring->current;
166 v = current - spring->previous;
167 force = spring->k * (spring->target - current) / 10.0 +
168 (spring->previous - current) - v * spring->friction;
171 current + (current - spring->previous) + force * step * step;
172 spring->previous = current;
175 if (spring->current >= 1.0) {
176 #ifdef TWEENER_BOUNCE
177 spring->current = 2.0 - spring->current;
178 spring->previous = 2.0 - spring->previous;
180 spring->current = 1.0;
181 spring->previous = 1.0;
185 if (spring->current <= 0.0) {
186 spring->current = 0.0;
187 spring->previous = 0.0;
193 wlsc_spring_done(struct wlsc_spring *spring)
195 return fabs(spring->previous - spring->target) < 0.0002 &&
196 fabs(spring->current - spring->target) < 0.0002;
200 surface_handle_buffer_destroy(struct wl_listener *listener,
201 struct wl_resource *resource, uint32_t time)
203 struct wlsc_surface *es = container_of(listener, struct wlsc_surface,
204 buffer_destroy_listener);
205 struct wl_buffer *buffer = (struct wl_buffer *) resource;
207 if (es->buffer == buffer)
212 output_handle_scanout_buffer_destroy(struct wl_listener *listener,
213 struct wl_resource *resource,
216 struct wlsc_output *output =
217 container_of(listener, struct wlsc_output,
218 scanout_buffer_destroy_listener);
219 struct wl_buffer *buffer = (struct wl_buffer *) resource;
221 if (output->scanout_buffer == buffer)
222 output->scanout_buffer = NULL;
225 WL_EXPORT struct wlsc_surface *
226 wlsc_surface_create(struct wlsc_compositor *compositor,
227 int32_t x, int32_t y, int32_t width, int32_t height)
229 struct wlsc_surface *surface;
231 surface = malloc(sizeof *surface);
235 wl_list_init(&surface->link);
236 wl_list_init(&surface->buffer_link);
237 surface->map_type = WLSC_SURFACE_MAP_UNMAPPED;
239 glGenTextures(1, &surface->texture);
240 glBindTexture(GL_TEXTURE_2D, surface->texture);
241 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
242 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
244 surface->surface.client = NULL;
246 surface->compositor = compositor;
247 surface->visual = NULL;
248 surface->image = EGL_NO_IMAGE_KHR;
249 surface->saved_texture = 0;
252 surface->width = width;
253 surface->height = height;
255 surface->buffer = NULL;
257 pixman_region32_init(&surface->damage);
259 surface->buffer_destroy_listener.func = surface_handle_buffer_destroy;
260 wl_list_init(&surface->buffer_destroy_listener.link);
262 surface->transform = NULL;
268 wlsc_surface_damage_rectangle(struct wlsc_surface *surface,
269 int32_t x, int32_t y,
270 int32_t width, int32_t height)
272 struct wlsc_compositor *compositor = surface->compositor;
274 pixman_region32_union_rect(&surface->damage,
276 surface->x + x, surface->y + y,
278 wlsc_compositor_schedule_repaint(compositor);
282 wlsc_surface_damage(struct wlsc_surface *surface)
284 wlsc_surface_damage_rectangle(surface, 0, 0,
285 surface->width, surface->height);
289 wlsc_surface_damage_below(struct wlsc_surface *surface)
291 struct wlsc_surface *below;
293 if (surface->link.next == &surface->compositor->surface_list)
296 below = container_of(surface->link.next, struct wlsc_surface, link);
298 pixman_region32_union_rect(&below->damage,
300 surface->x, surface->y,
301 surface->width, surface->height);
302 wlsc_compositor_schedule_repaint(surface->compositor);
306 wlsc_compositor_get_time(void)
310 gettimeofday(&tv, NULL);
312 return tv.tv_sec * 1000 + tv.tv_usec / 1000;
316 destroy_surface(struct wl_resource *resource, struct wl_client *client)
318 struct wlsc_surface *surface =
319 container_of(resource, struct wlsc_surface, surface.resource);
320 struct wlsc_compositor *compositor = surface->compositor;
322 wlsc_surface_damage_below(surface);
324 wl_list_remove(&surface->link);
325 if (surface->saved_texture == 0)
326 glDeleteTextures(1, &surface->texture);
328 glDeleteTextures(1, &surface->saved_texture);
331 wl_list_remove(&surface->buffer_destroy_listener.link);
333 if (surface->image != EGL_NO_IMAGE_KHR)
334 compositor->destroy_image(compositor->display,
337 wl_list_remove(&surface->buffer_link);
343 wlsc_buffer_attach(struct wl_buffer *buffer, struct wl_surface *surface)
345 struct wlsc_surface *es = (struct wlsc_surface *) surface;
346 struct wlsc_compositor *ec = es->compositor;
347 struct wl_list *surfaces_attached_to;
349 if (es->saved_texture != 0)
350 es->texture = es->saved_texture;
352 glBindTexture(GL_TEXTURE_2D, es->texture);
354 if (wl_buffer_is_shm(buffer)) {
355 /* Unbind any EGLImage texture that may be bound, so we don't
357 glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT,
358 0, 0, 0, GL_BGRA_EXT, GL_UNSIGNED_BYTE, NULL);
359 es->pitch = wl_shm_buffer_get_stride(buffer) / 4;
360 glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT,
361 es->pitch, buffer->height, 0,
362 GL_BGRA_EXT, GL_UNSIGNED_BYTE,
363 wl_shm_buffer_get_data(buffer));
364 es->visual = buffer->visual;
366 surfaces_attached_to = buffer->user_data;
368 wl_list_remove(&es->buffer_link);
369 wl_list_insert(surfaces_attached_to, &es->buffer_link);
371 if (es->image != EGL_NO_IMAGE_KHR)
372 ec->destroy_image(ec->display, es->image);
373 es->image = ec->create_image(ec->display, NULL,
374 EGL_WAYLAND_BUFFER_WL,
377 ec->image_target_texture_2d(GL_TEXTURE_2D, es->image);
378 es->visual = buffer->visual;
379 es->pitch = es->width;
384 wlsc_sprite_attach(struct wlsc_sprite *sprite, struct wl_surface *surface)
386 struct wlsc_surface *es = (struct wlsc_surface *) surface;
387 struct wlsc_compositor *ec = es->compositor;
389 es->pitch = es->width;
390 es->image = sprite->image;
391 if (sprite->image != EGL_NO_IMAGE_KHR) {
392 glBindTexture(GL_TEXTURE_2D, es->texture);
393 ec->image_target_texture_2d(GL_TEXTURE_2D, es->image);
395 if (es->saved_texture == 0)
396 es->saved_texture = es->texture;
397 es->texture = sprite->texture;
400 es->visual = sprite->visual;
407 SPRITE_USE_CURSOR = (1 << 0),
410 static struct wlsc_sprite *
411 create_sprite_from_png(struct wlsc_compositor *ec,
412 const char *filename, uint32_t usage)
415 struct wlsc_sprite *sprite;
416 int32_t width, height;
419 pixels = wlsc_load_image(filename, &width, &height, &stride);
423 sprite = malloc(sizeof *sprite);
424 if (sprite == NULL) {
429 sprite->visual = &ec->compositor.premultiplied_argb_visual;
430 sprite->width = width;
431 sprite->height = height;
432 sprite->image = EGL_NO_IMAGE_KHR;
434 if (usage & SPRITE_USE_CURSOR && ec->create_cursor_image != NULL)
435 sprite->image = ec->create_cursor_image(ec, width, height);
437 glGenTextures(1, &sprite->texture);
438 glBindTexture(GL_TEXTURE_2D, sprite->texture);
439 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
440 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
441 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
442 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
444 if (sprite->image != EGL_NO_IMAGE_KHR) {
445 ec->image_target_texture_2d(GL_TEXTURE_2D, sprite->image);
446 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, width, height,
447 GL_BGRA_EXT, GL_UNSIGNED_BYTE, pixels);
449 glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT, width, height, 0,
450 GL_BGRA_EXT, GL_UNSIGNED_BYTE, pixels);
458 static const struct {
459 const char *filename;
460 int hotspot_x, hotspot_y;
461 } pointer_images[] = {
462 { DATADIR "/wayland/bottom_left_corner.png", 6, 30 },
463 { DATADIR "/wayland/bottom_right_corner.png", 28, 28 },
464 { DATADIR "/wayland/bottom_side.png", 16, 20 },
465 { DATADIR "/wayland/grabbing.png", 20, 17 },
466 { DATADIR "/wayland/left_ptr.png", 10, 5 },
467 { DATADIR "/wayland/left_side.png", 10, 20 },
468 { DATADIR "/wayland/right_side.png", 30, 19 },
469 { DATADIR "/wayland/top_left_corner.png", 8, 8 },
470 { DATADIR "/wayland/top_right_corner.png", 26, 8 },
471 { DATADIR "/wayland/top_side.png", 18, 8 },
472 { DATADIR "/wayland/xterm.png", 15, 15 }
476 create_pointer_images(struct wlsc_compositor *ec)
480 count = ARRAY_LENGTH(pointer_images);
481 ec->pointer_sprites = malloc(count * sizeof *ec->pointer_sprites);
482 for (i = 0; i < count; i++) {
483 ec->pointer_sprites[i] =
484 create_sprite_from_png(ec,
485 pointer_images[i].filename,
490 static struct wlsc_surface *
491 background_create(struct wlsc_output *output, const char *filename)
493 struct wlsc_surface *background;
494 struct wlsc_sprite *sprite;
496 background = wlsc_surface_create(output->compositor,
497 output->x, output->y,
498 output->current->width,
499 output->current->height);
500 if (background == NULL)
503 sprite = create_sprite_from_png(output->compositor, filename, 0);
504 if (sprite == NULL) {
509 wlsc_sprite_attach(sprite, &background->surface);
515 texture_region(struct wlsc_surface *es, pixman_region32_t *region)
517 struct wlsc_compositor *ec = es->compositor;
518 GLfloat *v, inv_width, inv_height;
519 pixman_box32_t *rectangles;
523 rectangles = pixman_region32_rectangles(region, &n);
524 v = wl_array_add(&ec->vertices, n * 16 * sizeof *v);
525 p = wl_array_add(&ec->indices, n * 6 * sizeof *p);
526 inv_width = 1.0 / es->pitch;
527 inv_height = 1.0 / es->height;
529 for (i = 0; i < n; i++, v += 16, p += 6) {
530 v[ 0] = rectangles[i].x1;
531 v[ 1] = rectangles[i].y1;
532 v[ 2] = (GLfloat) (rectangles[i].x1 - es->x) * inv_width;
533 v[ 3] = (GLfloat) (rectangles[i].y1 - es->y) * inv_height;
535 v[ 4] = rectangles[i].x1;
536 v[ 5] = rectangles[i].y2;
538 v[ 7] = (GLfloat) (rectangles[i].y2 - es->y) * inv_height;
540 v[ 8] = rectangles[i].x2;
541 v[ 9] = rectangles[i].y1;
542 v[10] = (GLfloat) (rectangles[i].x2 - es->x) * inv_width;
545 v[12] = rectangles[i].x2;
546 v[13] = rectangles[i].y2;
562 transform_vertex(struct wlsc_surface *surface,
563 GLfloat x, GLfloat y, GLfloat u, GLfloat v, GLfloat *r)
565 struct wlsc_vector t;
572 wlsc_matrix_transform(&surface->transform->matrix, &t);
581 texture_transformed_surface(struct wlsc_surface *es)
583 struct wlsc_compositor *ec = es->compositor;
587 v = wl_array_add(&ec->vertices, 16 * sizeof *v);
588 p = wl_array_add(&ec->indices, 6 * sizeof *p);
590 transform_vertex(es, es->x, es->y, 0.0, 0.0, &v[0]);
591 transform_vertex(es, es->x, es->y + es->height, 0.0, 1.0, &v[4]);
592 transform_vertex(es, es->x + es->width, es->y, 1.0, 0.0, &v[8]);
593 transform_vertex(es, es->x + es->width, es->y + es->height,
607 wlsc_surface_draw(struct wlsc_surface *es,
608 struct wlsc_output *output, pixman_region32_t *clip)
610 struct wlsc_compositor *ec = es->compositor;
612 pixman_region32_t repaint;
616 pixman_region32_init_rect(&repaint,
617 es->x, es->y, es->width, es->height);
618 pixman_region32_intersect(&repaint, &repaint, clip);
619 if (!pixman_region32_not_empty(&repaint))
622 if (es->visual == &ec->compositor.argb_visual) {
623 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
625 } else if (es->visual == &ec->compositor.premultiplied_argb_visual) {
626 glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
632 if (es->transform == NULL) {
634 n = texture_region(es, &repaint);
637 n = texture_transformed_surface(es);
640 glBindTexture(GL_TEXTURE_2D, es->texture);
641 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, filter);
642 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, filter);
644 v = ec->vertices.data;
645 glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[0]);
646 glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 4 * sizeof *v, &v[2]);
647 glEnableVertexAttribArray(0);
648 glEnableVertexAttribArray(1);
649 glDrawElements(GL_TRIANGLES, n * 6, GL_UNSIGNED_INT, ec->indices.data);
651 ec->vertices.size = 0;
652 ec->indices.size = 0;
653 pixman_region32_fini(&repaint);
657 wlsc_surface_raise(struct wlsc_surface *surface)
659 struct wlsc_compositor *compositor = surface->compositor;
661 wl_list_remove(&surface->link);
662 wl_list_insert(&compositor->surface_list, &surface->link);
666 wlsc_compositor_damage_all(struct wlsc_compositor *compositor)
668 struct wlsc_output *output;
670 wl_list_for_each(output, &compositor->output_list, link)
671 wlsc_output_damage(output);
675 wlsc_buffer_post_release(struct wl_buffer *buffer)
677 if (buffer == NULL || --buffer->busy_count > 0)
680 assert(buffer->client != NULL);
681 wl_client_post_event(buffer->client,
682 &buffer->resource.object,
687 wlsc_output_damage(struct wlsc_output *output)
689 struct wlsc_compositor *compositor = output->compositor;
691 pixman_region32_union(&compositor->damage,
692 &compositor->damage, &output->region);
693 wlsc_compositor_schedule_repaint(compositor);
697 fade_frame(struct wlsc_animation *animation,
698 struct wlsc_output *output, uint32_t msecs)
700 struct wlsc_compositor *compositor =
701 container_of(animation,
702 struct wlsc_compositor, fade.animation);
704 wlsc_spring_update(&compositor->fade.spring, msecs);
705 if (wlsc_spring_done(&compositor->fade.spring)) {
706 if (compositor->fade.spring.current > 0.999) {
707 compositor->state = WLSC_COMPOSITOR_SLEEPING;
708 compositor->shell->lock(compositor->shell);
710 compositor->fade.spring.current =
711 compositor->fade.spring.target;
712 wl_list_remove(&animation->link);
713 wl_list_init(&animation->link);
716 wlsc_output_damage(output);
720 fade_output(struct wlsc_output *output,
721 GLfloat tint, pixman_region32_t *region)
723 struct wlsc_compositor *compositor = output->compositor;
724 struct wlsc_surface surface;
725 GLfloat color[4] = { 0.0, 0.0, 0.0, tint };
727 surface.compositor = compositor;
728 surface.x = output->x;
729 surface.y = output->y;
730 surface.width = output->current->width;
731 surface.height = output->current->height;
732 surface.texture = GL_NONE;
733 surface.transform = NULL;
737 &compositor->compositor.premultiplied_argb_visual;
739 surface.visual = &compositor->compositor.rgb_visual;
741 glUseProgram(compositor->solid_shader.program);
742 glUniformMatrix4fv(compositor->solid_shader.proj_uniform,
743 1, GL_FALSE, output->matrix.d);
744 glUniform4fv(compositor->solid_shader.color_uniform, 1, color);
745 wlsc_surface_draw(&surface, output, region);
749 wlsc_output_repaint(struct wlsc_output *output)
751 struct wlsc_compositor *ec = output->compositor;
752 struct wlsc_surface *es;
753 struct wlsc_input_device *device;
754 pixman_region32_t clip, new_damage, total_damage, region, opaque;
756 output->prepare_render(output);
758 glViewport(0, 0, output->current->width, output->current->height);
760 glUseProgram(ec->texture_shader.program);
761 glUniformMatrix4fv(ec->texture_shader.proj_uniform,
762 1, GL_FALSE, output->matrix.d);
763 glUniform1i(ec->texture_shader.tex_uniform, 0);
765 pixman_region32_init(&new_damage);
766 pixman_region32_intersect(&new_damage, &ec->damage, &output->region);
767 pixman_region32_init(&clip);
768 pixman_region32_copy(&clip, &output->region);
769 wl_list_for_each(es, &ec->surface_list, link) {
770 pixman_region32_intersect(&es->damage, &es->damage, &clip);
771 pixman_region32_union(&new_damage, &new_damage, &es->damage);
772 if (es->visual == &ec->compositor.rgb_visual) {
773 pixman_region32_init_rect(®ion, es->x, es->y, es->width, es->height);
774 pixman_region32_subtract(&clip, &clip, ®ion);
775 pixman_region32_fini(®ion);
779 pixman_region32_subtract(&ec->damage, &ec->damage, &output->region);
780 pixman_region32_init(&total_damage);
781 pixman_region32_union(&total_damage, &new_damage,
782 &output->previous_damage);
783 pixman_region32_copy(&output->previous_damage, &new_damage);
785 pixman_region32_fini(&clip);
786 pixman_region32_fini(&new_damage);
788 device = (struct wlsc_input_device *) ec->input_device;
789 if (ec->focus && ec->fade.spring.current < 0.001) {
790 if (!wl_list_empty(&device->sprite->link)) {
791 wl_list_remove(&device->sprite->link);
792 wl_list_init(&device->sprite->link);
794 if (output->set_hardware_cursor(output, device) < 0)
795 wl_list_insert(&ec->surface_list,
796 &device->sprite->link);
798 output->set_hardware_cursor(output, NULL);
799 if (wl_list_empty(&device->sprite->link))
800 wl_list_insert(&ec->surface_list,
801 &device->sprite->link);
804 es = container_of(ec->surface_list.next, struct wlsc_surface, link);
806 if (es->visual == &ec->compositor.rgb_visual &&
807 output->prepare_scanout_surface(output, es) == 0) {
808 /* We're drawing nothing now,
809 * draw the damaged regions later. */
810 pixman_region32_union(&ec->damage, &ec->damage, &total_damage);
812 output->scanout_buffer = es->buffer;
813 output->scanout_buffer->busy_count++;
815 wl_list_remove(&output->scanout_buffer_destroy_listener.link);
816 wl_list_insert(output->scanout_buffer->resource.destroy_listener_list.prev,
817 &output->scanout_buffer_destroy_listener.link);
822 if (es->fullscreen_output == output) {
823 if (es->width < output->current->width ||
824 es->height < output->current->height)
825 glClear(GL_COLOR_BUFFER_BIT);
826 wlsc_surface_draw(es, output, &total_damage);
828 pixman_region32_init(&opaque);
829 wl_list_for_each(es, &ec->surface_list, link) {
830 pixman_region32_subtract(&es->damage, &total_damage, &opaque);
831 if (es->visual == &ec->compositor.rgb_visual)
832 pixman_region32_union_rect(&opaque, &opaque,
833 es->x, es->y, es->width, es->height);
835 pixman_region32_fini(&opaque);
837 wl_list_for_each_reverse(es, &ec->surface_list, link) {
838 wlsc_surface_draw(es, output, &es->damage);
839 pixman_region32_fini(&es->damage);
840 pixman_region32_init(&es->damage);
844 if (ec->fade.spring.current > 0.001)
845 fade_output(output, ec->fade.spring.current, &total_damage);
849 repaint(void *data, int msecs)
851 struct wlsc_output *output = data;
852 struct wlsc_compositor *compositor = output->compositor;
853 struct wlsc_surface *es;
854 struct wlsc_animation *animation, *next;
856 wlsc_output_repaint(output);
857 output->repaint_needed = 0;
858 output->repaint_scheduled = 1;
859 output->present(output);
861 /* FIXME: Keep the surfaces in an per-output list. */
862 wl_list_for_each(es, &compositor->surface_list, link) {
863 if (es->output == output) {
864 wl_display_post_frame(compositor->wl_display,
865 &es->surface, msecs);
869 wl_list_for_each_safe(animation, next,
870 &compositor->animation_list, link)
871 animation->frame(animation, output, msecs);
875 idle_repaint(void *data)
877 repaint(data, wlsc_compositor_get_time());
881 wlsc_output_finish_frame(struct wlsc_output *output, int msecs)
883 wlsc_buffer_post_release(output->scanout_buffer);
884 output->scanout_buffer = NULL;
885 output->repaint_scheduled = 0;
887 if (output->repaint_needed)
888 repaint(output, msecs);
892 wlsc_compositor_schedule_repaint(struct wlsc_compositor *compositor)
894 struct wlsc_output *output;
895 struct wl_event_loop *loop;
897 if (compositor->state == WLSC_COMPOSITOR_SLEEPING)
900 loop = wl_display_get_event_loop(compositor->wl_display);
901 wl_list_for_each(output, &compositor->output_list, link) {
902 output->repaint_needed = 1;
903 if (output->repaint_scheduled)
906 wl_event_loop_add_idle(loop, idle_repaint, output);
907 output->repaint_scheduled = 1;
912 wlsc_compositor_fade(struct wlsc_compositor *compositor, float tint)
916 done = wlsc_spring_done(&compositor->fade.spring);
917 compositor->fade.spring.target = tint;
918 if (wlsc_spring_done(&compositor->fade.spring))
922 compositor->fade.spring.timestamp =
923 wlsc_compositor_get_time();
925 wlsc_compositor_damage_all(compositor);
926 if (wl_list_empty(&compositor->fade.animation.link))
927 wl_list_insert(compositor->animation_list.prev,
928 &compositor->fade.animation.link);
932 surface_destroy(struct wl_client *client,
933 struct wl_surface *surface)
935 wl_resource_destroy(&surface->resource, client,
936 wlsc_compositor_get_time());
940 wlsc_surface_assign_output(struct wlsc_surface *es)
942 struct wlsc_compositor *ec = es->compositor;
943 struct wlsc_output *output;
945 struct wlsc_output *tmp = es->output;
948 wl_list_for_each(output, &ec->output_list, link) {
949 if (pixman_region32_contains_point(&output->region,
950 es->x, es->y, NULL)) {
952 printf("assiging surface %p to output %p\n",
958 if (es->output == NULL) {
959 printf("no output found\n");
960 es->output = container_of(ec->output_list.next,
961 struct wlsc_output, link);
966 surface_attach(struct wl_client *client,
967 struct wl_surface *surface, struct wl_buffer *buffer,
968 int32_t x, int32_t y)
970 struct wlsc_surface *es = (struct wlsc_surface *) surface;
972 /* FIXME: This damages the entire old surface, but we should
973 * really just damage the part that's no longer covered by the
974 * surface. Anything covered by the new surface will be
975 * damaged by the client. */
977 wlsc_surface_damage_below(es);
979 buffer->busy_count++;
980 wlsc_buffer_post_release(es->buffer);
983 wl_list_remove(&es->buffer_destroy_listener.link);
984 wl_list_insert(es->buffer->resource.destroy_listener_list.prev,
985 &es->buffer_destroy_listener.link);
989 es->width = buffer->width;
990 es->height = buffer->height;
991 if (x != 0 || y != 0)
992 wlsc_surface_assign_output(es);
993 if (es->visual == NULL)
994 wl_list_insert(&es->compositor->surface_list, &es->link);
996 wlsc_buffer_attach(buffer, surface);
998 es->compositor->shell->attach(es->compositor->shell, es);
1002 surface_damage(struct wl_client *client,
1003 struct wl_surface *surface,
1004 int32_t x, int32_t y, int32_t width, int32_t height)
1006 struct wlsc_surface *es = (struct wlsc_surface *) surface;
1008 wlsc_surface_damage_rectangle(es, x, y, width, height);
1011 const static struct wl_surface_interface surface_interface = {
1018 wlsc_input_device_attach(struct wlsc_input_device *device,
1019 int x, int y, int width, int height)
1021 wlsc_surface_damage_below(device->sprite);
1023 device->hotspot_x = x;
1024 device->hotspot_y = y;
1026 device->sprite->x = device->input_device.x - device->hotspot_x;
1027 device->sprite->y = device->input_device.y - device->hotspot_y;
1028 device->sprite->width = width;
1029 device->sprite->height = height;
1031 wlsc_surface_damage(device->sprite);
1035 wlsc_input_device_attach_buffer(struct wlsc_input_device *device,
1036 struct wl_buffer *buffer, int x, int y)
1038 wlsc_buffer_attach(buffer, &device->sprite->surface);
1039 wlsc_input_device_attach(device, x, y, buffer->width, buffer->height);
1043 wlsc_input_device_attach_sprite(struct wlsc_input_device *device,
1044 struct wlsc_sprite *sprite, int x, int y)
1046 wlsc_sprite_attach(sprite, &device->sprite->surface);
1047 wlsc_input_device_attach(device, x, y, sprite->width, sprite->height);
1051 wlsc_input_device_set_pointer_image(struct wlsc_input_device *device,
1052 enum wlsc_pointer_type type)
1054 struct wlsc_compositor *compositor =
1055 (struct wlsc_compositor *) device->input_device.compositor;
1057 wlsc_input_device_attach_sprite(device,
1058 compositor->pointer_sprites[type],
1059 pointer_images[type].hotspot_x,
1060 pointer_images[type].hotspot_y);
1064 compositor_create_surface(struct wl_client *client,
1065 struct wl_compositor *compositor, uint32_t id)
1067 struct wlsc_compositor *ec = (struct wlsc_compositor *) compositor;
1068 struct wlsc_surface *surface;
1070 surface = wlsc_surface_create(ec, 0, 0, 0, 0);
1071 if (surface == NULL) {
1072 wl_client_post_no_memory(client);
1076 surface->surface.resource.destroy = destroy_surface;
1078 surface->surface.resource.object.id = id;
1079 surface->surface.resource.object.interface = &wl_surface_interface;
1080 surface->surface.resource.object.implementation =
1081 (void (**)(void)) &surface_interface;
1082 surface->surface.client = client;
1084 wl_client_add_resource(client, &surface->surface.resource);
1087 const static struct wl_compositor_interface compositor_interface = {
1088 compositor_create_surface,
1092 wlsc_surface_transform(struct wlsc_surface *surface,
1093 int32_t x, int32_t y, int32_t *sx, int32_t *sy)
1095 *sx = x - surface->x;
1096 *sy = y - surface->y;
1099 WL_EXPORT struct wlsc_surface *
1100 pick_surface(struct wl_input_device *device, int32_t *sx, int32_t *sy)
1102 struct wlsc_compositor *ec =
1103 (struct wlsc_compositor *) device->compositor;
1104 struct wlsc_surface *es;
1106 wl_list_for_each(es, &ec->surface_list, link) {
1107 if (es->surface.client == NULL)
1109 wlsc_surface_transform(es, device->x, device->y, sx, sy);
1110 if (0 <= *sx && *sx < es->width &&
1111 0 <= *sy && *sy < es->height)
1120 motion_grab_motion(struct wl_grab *grab,
1121 uint32_t time, int32_t x, int32_t y)
1123 struct wlsc_input_device *device =
1124 (struct wlsc_input_device *) grab->input_device;
1125 struct wlsc_surface *es =
1126 (struct wlsc_surface *) device->input_device.pointer_focus;
1129 wlsc_surface_transform(es, x, y, &sx, &sy);
1130 wl_client_post_event(es->surface.client,
1131 &device->input_device.object,
1132 WL_INPUT_DEVICE_MOTION,
1133 time, x, y, sx, sy);
1137 motion_grab_button(struct wl_grab *grab,
1138 uint32_t time, int32_t button, int32_t state)
1140 wl_client_post_event(grab->input_device->pointer_focus->client,
1141 &grab->input_device->object,
1142 WL_INPUT_DEVICE_BUTTON,
1143 time, button, state);
1147 motion_grab_end(struct wl_grab *grab, uint32_t time)
1151 static const struct wl_grab_interface motion_grab_interface = {
1158 wlsc_compositor_wake(struct wlsc_compositor *compositor)
1160 if (compositor->idle_inhibit)
1163 wlsc_compositor_fade(compositor, 0.0);
1164 compositor->state = WLSC_COMPOSITOR_ACTIVE;
1166 wl_event_source_timer_update(compositor->idle_source,
1167 option_idle_time * 1000);
1171 wlsc_compositor_idle_inhibit(struct wlsc_compositor *compositor)
1173 wlsc_compositor_wake(compositor);
1174 compositor->idle_inhibit++;
1178 wlsc_compositor_idle_release(struct wlsc_compositor *compositor)
1180 compositor->idle_inhibit--;
1181 wlsc_compositor_wake(compositor);
1185 idle_handler(void *data)
1187 struct wlsc_compositor *compositor = data;
1189 if (compositor->idle_inhibit)
1192 wlsc_compositor_fade(compositor, 1.0);
1198 notify_motion(struct wl_input_device *device, uint32_t time, int x, int y)
1200 struct wlsc_surface *es;
1201 struct wlsc_compositor *ec =
1202 (struct wlsc_compositor *) device->compositor;
1203 struct wlsc_output *output;
1204 const struct wl_grab_interface *interface;
1205 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
1207 int x_valid = 0, y_valid = 0;
1208 int min_x = INT_MAX, min_y = INT_MAX, max_x = INT_MIN, max_y = INT_MIN;
1210 wlsc_compositor_wake(ec);
1212 wl_list_for_each(output, &ec->output_list, link) {
1213 if (output->x <= x && x <= output->x + output->current->width)
1216 if (output->y <= y && y <= output->y + output->current->height)
1219 /* FIXME: calculate this only on output addition/deletion */
1220 if (output->x < min_x)
1222 if (output->y < min_y)
1225 if (output->x + output->current->width > max_x)
1226 max_x = output->x + output->current->width;
1227 if (output->y + output->current->height > max_y)
1228 max_y = output->y + output->current->height;
1234 else if (x >= max_x)
1240 else if (y >= max_y)
1248 interface = device->grab->interface;
1249 interface->motion(device->grab, time, x, y);
1251 es = pick_surface(device, &sx, &sy);
1252 wl_input_device_set_pointer_focus(device,
1254 time, x, y, sx, sy);
1256 wl_client_post_event(es->surface.client,
1258 WL_INPUT_DEVICE_MOTION,
1259 time, x, y, sx, sy);
1262 wlsc_surface_damage_below(wd->sprite);
1264 wd->sprite->x = device->x - wd->hotspot_x;
1265 wd->sprite->y = device->y - wd->hotspot_y;
1267 wlsc_surface_damage(wd->sprite);
1271 wlsc_surface_activate(struct wlsc_surface *surface,
1272 struct wlsc_input_device *device, uint32_t time)
1274 struct wlsc_shell *shell = surface->compositor->shell;
1276 wlsc_surface_raise(surface);
1277 if (device->selection)
1278 shell->set_selection_focus(shell,
1280 &surface->surface, time);
1282 wl_input_device_set_keyboard_focus(&device->input_device,
1287 struct wlsc_binding {
1291 wlsc_binding_handler_t handler;
1293 struct wl_list link;
1297 notify_button(struct wl_input_device *device,
1298 uint32_t time, int32_t button, int32_t state)
1300 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
1301 struct wlsc_compositor *compositor =
1302 (struct wlsc_compositor *) device->compositor;
1303 struct wlsc_binding *b;
1304 struct wlsc_surface *surface =
1305 (struct wlsc_surface *) device->pointer_focus;
1308 wlsc_compositor_idle_inhibit(compositor);
1310 wlsc_compositor_idle_release(compositor);
1312 if (state && surface && device->grab == NULL) {
1313 wlsc_surface_activate(surface, wd, time);
1314 wl_input_device_start_grab(device,
1315 &device->motion_grab,
1319 wl_list_for_each(b, &compositor->binding_list, link) {
1320 if (b->button == button &&
1321 b->modifier == wd->modifier_state && state) {
1322 b->handler(&wd->input_device,
1323 time, 0, button, state, b->data);
1329 device->grab->interface->button(device->grab, time,
1332 if (!state && device->grab && device->grab_button == button)
1333 wl_input_device_end_grab(device, time);
1337 terminate_binding(struct wl_input_device *device, uint32_t time,
1338 uint32_t key, uint32_t button, uint32_t state, void *data)
1340 struct wlsc_compositor *compositor = data;
1343 wl_display_terminate(compositor->wl_display);
1346 WL_EXPORT struct wlsc_binding *
1347 wlsc_compositor_add_binding(struct wlsc_compositor *compositor,
1348 uint32_t key, uint32_t button, uint32_t modifier,
1349 wlsc_binding_handler_t handler, void *data)
1351 struct wlsc_binding *binding;
1353 binding = malloc(sizeof *binding);
1354 if (binding == NULL)
1358 binding->button = button;
1359 binding->modifier = modifier;
1360 binding->handler = handler;
1361 binding->data = data;
1362 wl_list_insert(compositor->binding_list.prev, &binding->link);
1368 wlsc_binding_destroy(struct wlsc_binding *binding)
1370 wl_list_remove(&binding->link);
1375 update_modifier_state(struct wlsc_input_device *device,
1376 uint32_t key, uint32_t state)
1383 modifier = MODIFIER_CTRL;
1388 modifier = MODIFIER_ALT;
1393 modifier = MODIFIER_SUPER;
1402 device->modifier_state |= modifier;
1404 device->modifier_state &= ~modifier;
1408 notify_key(struct wl_input_device *device,
1409 uint32_t time, uint32_t key, uint32_t state)
1411 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
1412 struct wlsc_compositor *compositor =
1413 (struct wlsc_compositor *) device->compositor;
1415 struct wlsc_binding *b;
1418 wlsc_compositor_idle_inhibit(compositor);
1420 wlsc_compositor_idle_release(compositor);
1422 wl_list_for_each(b, &compositor->binding_list, link) {
1423 if (b->key == key &&
1424 b->modifier == wd->modifier_state) {
1425 b->handler(&wd->input_device,
1426 time, key, 0, state, b->data);
1431 update_modifier_state(wd, key, state);
1432 end = device->keys.data + device->keys.size;
1433 for (k = device->keys.data; k < end; k++) {
1437 device->keys.size = (void *) end - device->keys.data;
1439 k = wl_array_add(&device->keys, sizeof *k);
1443 if (device->keyboard_focus != NULL)
1444 wl_client_post_event(device->keyboard_focus->client,
1446 WL_INPUT_DEVICE_KEY, time, key, state);
1450 notify_pointer_focus(struct wl_input_device *device,
1451 uint32_t time, struct wlsc_output *output,
1452 int32_t x, int32_t y)
1454 struct wlsc_input_device *wd = (struct wlsc_input_device *) device;
1455 struct wlsc_compositor *compositor =
1456 (struct wlsc_compositor *) device->compositor;
1457 struct wlsc_surface *es;
1463 es = pick_surface(device, &sx, &sy);
1464 wl_input_device_set_pointer_focus(device,
1466 time, x, y, sx, sy);
1468 compositor->focus = 1;
1470 wd->sprite->x = device->x - wd->hotspot_x;
1471 wd->sprite->y = device->y - wd->hotspot_y;
1473 wl_input_device_set_pointer_focus(device, NULL,
1475 compositor->focus = 0;
1478 wlsc_surface_damage(wd->sprite);
1482 notify_keyboard_focus(struct wl_input_device *device,
1483 uint32_t time, struct wlsc_output *output,
1484 struct wl_array *keys)
1486 struct wlsc_input_device *wd =
1487 (struct wlsc_input_device *) device;
1488 struct wlsc_compositor *compositor =
1489 (struct wlsc_compositor *) device->compositor;
1490 struct wlsc_surface *es;
1493 if (!wl_list_empty(&compositor->surface_list))
1494 es = container_of(compositor->surface_list.next,
1495 struct wlsc_surface, link);
1500 wl_array_copy(&wd->input_device.keys, keys);
1501 wd->modifier_state = 0;
1502 end = device->keys.data + device->keys.size;
1503 for (k = device->keys.data; k < end; k++) {
1504 wlsc_compositor_idle_inhibit(compositor);
1505 update_modifier_state(wd, *k, 1);
1508 if (es->surface.client)
1509 wl_input_device_set_keyboard_focus(&wd->input_device,
1510 &es->surface, time);
1512 end = device->keys.data + device->keys.size;
1513 for (k = device->keys.data; k < end; k++)
1514 wlsc_compositor_idle_release(compositor);
1516 wd->modifier_state = 0;
1517 wl_input_device_set_keyboard_focus(&wd->input_device,
1524 input_device_attach(struct wl_client *client,
1525 struct wl_input_device *device_base,
1527 struct wl_buffer *buffer, int32_t x, int32_t y)
1529 struct wlsc_input_device *device =
1530 (struct wlsc_input_device *) device_base;
1532 if (time < device->input_device.pointer_focus_time)
1534 if (device->input_device.pointer_focus == NULL)
1536 if (device->input_device.pointer_focus->client != client)
1539 if (buffer == NULL) {
1540 wlsc_input_device_set_pointer_image(device,
1541 WLSC_POINTER_LEFT_PTR);
1545 wlsc_input_device_attach_buffer(device, buffer, x, y);
1548 const static struct wl_input_device_interface input_device_interface = {
1549 input_device_attach,
1553 wlsc_input_device_init(struct wlsc_input_device *device,
1554 struct wlsc_compositor *ec)
1556 wl_input_device_init(&device->input_device, &ec->compositor);
1558 device->input_device.object.interface = &wl_input_device_interface;
1559 device->input_device.object.implementation =
1560 (void (**)(void)) &input_device_interface;
1561 wl_display_add_object(ec->wl_display, &device->input_device.object);
1562 wl_display_add_global(ec->wl_display, &device->input_device.object, NULL);
1564 device->sprite = wlsc_surface_create(ec,
1565 device->input_device.x,
1566 device->input_device.y, 32, 32);
1567 wl_list_insert(&ec->surface_list, &device->sprite->link);
1569 device->hotspot_x = 16;
1570 device->hotspot_y = 16;
1571 device->modifier_state = 0;
1573 device->input_device.motion_grab.interface = &motion_grab_interface;
1575 wl_list_insert(ec->input_device_list.prev, &device->link);
1577 wlsc_input_device_set_pointer_image(device, WLSC_POINTER_LEFT_PTR);
1581 wlsc_output_post_geometry(struct wl_client *client,
1582 struct wl_object *global, uint32_t version)
1584 struct wlsc_output *output =
1585 container_of(global, struct wlsc_output, object);
1586 struct wlsc_mode *mode;
1588 wl_client_post_event(client, global,
1595 output->make, output->model);
1597 wl_list_for_each (mode, &output->mode_list, link) {
1598 wl_client_post_event(client, global,
1601 mode->width, mode->height, mode->refresh);
1605 static const char vertex_shader[] =
1606 "uniform mat4 proj;\n"
1607 "attribute vec2 position;\n"
1608 "attribute vec2 texcoord;\n"
1609 "varying vec2 v_texcoord;\n"
1612 " gl_Position = proj * vec4(position, 0.0, 1.0);\n"
1613 " v_texcoord = texcoord;\n"
1616 static const char texture_fragment_shader[] =
1617 "precision mediump float;\n"
1618 "varying vec2 v_texcoord;\n"
1619 "uniform sampler2D tex;\n"
1622 " gl_FragColor = texture2D(tex, v_texcoord)\n;"
1625 static const char solid_fragment_shader[] =
1626 "precision mediump float;\n"
1627 "uniform vec4 color;\n"
1630 " gl_FragColor = color\n;"
1634 compile_shader(GLenum type, const char *source)
1640 s = glCreateShader(type);
1641 glShaderSource(s, 1, &source, NULL);
1643 glGetShaderiv(s, GL_COMPILE_STATUS, &status);
1645 glGetShaderInfoLog(s, sizeof msg, NULL, msg);
1646 fprintf(stderr, "shader info: %s\n", msg);
1654 wlsc_shader_init(struct wlsc_shader *shader,
1655 const char *vertex_source, const char *fragment_source)
1660 shader->vertex_shader =
1661 compile_shader(GL_VERTEX_SHADER, vertex_source);
1662 shader->fragment_shader =
1663 compile_shader(GL_FRAGMENT_SHADER, fragment_source);
1665 shader->program = glCreateProgram();
1666 glAttachShader(shader->program, shader->vertex_shader);
1667 glAttachShader(shader->program, shader->fragment_shader);
1668 glBindAttribLocation(shader->program, 0, "position");
1669 glBindAttribLocation(shader->program, 1, "texcoord");
1671 glLinkProgram(shader->program);
1672 glGetProgramiv(shader->program, GL_LINK_STATUS, &status);
1674 glGetProgramInfoLog(shader->program, sizeof msg, NULL, msg);
1675 fprintf(stderr, "link info: %s\n", msg);
1679 shader->proj_uniform = glGetUniformLocation(shader->program, "proj");
1680 shader->tex_uniform = glGetUniformLocation(shader->program, "tex");
1686 init_solid_shader(struct wlsc_shader *shader,
1687 GLuint vertex_shader, const char *fragment_source)
1692 shader->vertex_shader = vertex_shader;
1693 shader->fragment_shader =
1694 compile_shader(GL_FRAGMENT_SHADER, fragment_source);
1696 shader->program = glCreateProgram();
1697 glAttachShader(shader->program, shader->vertex_shader);
1698 glAttachShader(shader->program, shader->fragment_shader);
1699 glBindAttribLocation(shader->program, 0, "position");
1700 glBindAttribLocation(shader->program, 1, "texcoord");
1702 glLinkProgram(shader->program);
1703 glGetProgramiv(shader->program, GL_LINK_STATUS, &status);
1705 glGetProgramInfoLog(shader->program, sizeof msg, NULL, msg);
1706 fprintf(stderr, "link info: %s\n", msg);
1710 shader->proj_uniform = glGetUniformLocation(shader->program, "proj");
1711 shader->color_uniform = glGetUniformLocation(shader->program, "color");
1717 wlsc_output_destroy(struct wlsc_output *output)
1719 pixman_region32_fini(&output->region);
1720 pixman_region32_fini(&output->previous_damage);
1721 destroy_surface(&output->background->surface.resource, NULL);
1725 wlsc_output_move(struct wlsc_output *output, int x, int y)
1727 struct wlsc_compositor *c = output->compositor;
1733 if (output->background) {
1734 output->background->x = x;
1735 output->background->y = y;
1738 pixman_region32_init(&output->previous_damage);
1739 pixman_region32_init_rect(&output->region, x, y,
1740 output->current->width,
1741 output->current->height);
1743 wlsc_matrix_init(&output->matrix);
1744 wlsc_matrix_translate(&output->matrix,
1745 -output->x - output->current->width / 2.0,
1746 -output->y - output->current->height / 2.0, 0);
1748 flip = (output->flags & WL_OUTPUT_FLIPPED) ? -1 : 1;
1749 wlsc_matrix_scale(&output->matrix,
1750 2.0 / output->current->width,
1751 flip * 2.0 / output->current->height, 1);
1753 pixman_region32_union(&c->damage, &c->damage, &output->region);
1757 wlsc_output_init(struct wlsc_output *output, struct wlsc_compositor *c,
1758 int x, int y, int width, int height, uint32_t flags)
1760 output->compositor = c;
1763 output->mm_width = width;
1764 output->mm_height = height;
1766 output->background =
1767 background_create(output, option_background);
1769 if (output->background != NULL)
1770 wl_list_insert(c->surface_list.prev,
1771 &output->background->link);
1773 output->flags = flags;
1774 wlsc_output_move(output, x, y);
1776 output->scanout_buffer_destroy_listener.func =
1777 output_handle_scanout_buffer_destroy;
1778 wl_list_init(&output->scanout_buffer_destroy_listener.link);
1780 output->object.interface = &wl_output_interface;
1781 wl_display_add_object(c->wl_display, &output->object);
1782 wl_display_add_global(c->wl_display, &output->object,
1783 wlsc_output_post_geometry);
1787 shm_buffer_created(struct wl_buffer *buffer)
1789 struct wl_list *surfaces_attached_to;
1791 surfaces_attached_to = malloc(sizeof *surfaces_attached_to);
1792 if (!surfaces_attached_to) {
1793 buffer->user_data = NULL;
1797 wl_list_init(surfaces_attached_to);
1799 buffer->user_data = surfaces_attached_to;
1803 shm_buffer_damaged(struct wl_buffer *buffer,
1804 int32_t x, int32_t y, int32_t width, int32_t height)
1806 struct wl_list *surfaces_attached_to = buffer->user_data;
1807 struct wlsc_surface *es;
1808 GLsizei tex_width = wl_shm_buffer_get_stride(buffer) / 4;
1810 wl_list_for_each(es, surfaces_attached_to, buffer_link) {
1811 glBindTexture(GL_TEXTURE_2D, es->texture);
1812 glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT,
1813 tex_width, buffer->height, 0,
1814 GL_BGRA_EXT, GL_UNSIGNED_BYTE,
1815 wl_shm_buffer_get_data(buffer));
1816 /* Hmm, should use glTexSubImage2D() here but GLES2 doesn't
1817 * support any unpack attributes except GL_UNPACK_ALIGNMENT. */
1822 shm_buffer_destroyed(struct wl_buffer *buffer)
1824 struct wl_list *surfaces_attached_to = buffer->user_data;
1825 struct wlsc_surface *es, *next;
1827 wl_list_for_each_safe(es, next, surfaces_attached_to, buffer_link) {
1828 wl_list_remove(&es->buffer_link);
1829 wl_list_init(&es->buffer_link);
1832 free(surfaces_attached_to);
1835 const static struct wl_shm_callbacks shm_callbacks = {
1838 shm_buffer_destroyed
1842 wlsc_compositor_init(struct wlsc_compositor *ec, struct wl_display *display)
1844 struct wl_event_loop *loop;
1845 const char *extensions;
1847 ec->wl_display = display;
1849 wl_compositor_init(&ec->compositor, &compositor_interface, display);
1851 ec->shm = wl_shm_init(display, &shm_callbacks);
1853 ec->image_target_texture_2d =
1854 (void *) eglGetProcAddress("glEGLImageTargetTexture2DOES");
1855 ec->image_target_renderbuffer_storage = (void *)
1856 eglGetProcAddress("glEGLImageTargetRenderbufferStorageOES");
1857 ec->create_image = (void *) eglGetProcAddress("eglCreateImageKHR");
1858 ec->destroy_image = (void *) eglGetProcAddress("eglDestroyImageKHR");
1860 (void *) eglGetProcAddress("eglBindWaylandDisplayWL");
1861 ec->unbind_display =
1862 (void *) eglGetProcAddress("eglUnbindWaylandDisplayWL");
1864 extensions = (const char *) glGetString(GL_EXTENSIONS);
1865 if (!strstr(extensions, "GL_EXT_texture_format_BGRA8888")) {
1867 "GL_EXT_texture_format_BGRA8888 not available\n");
1872 (const char *) eglQueryString(ec->display, EGL_EXTENSIONS);
1873 if (strstr(extensions, "EGL_WL_bind_wayland_display"))
1874 ec->has_bind_display = 1;
1875 if (ec->has_bind_display)
1876 ec->bind_display(ec->display, ec->wl_display);
1878 wl_list_init(&ec->surface_list);
1879 wl_list_init(&ec->input_device_list);
1880 wl_list_init(&ec->output_list);
1881 wl_list_init(&ec->binding_list);
1882 wl_list_init(&ec->animation_list);
1883 wlsc_spring_init(&ec->fade.spring, 0.8, 0.0, 0.0);
1884 ec->fade.animation.frame = fade_frame;
1885 wl_list_init(&ec->fade.animation.link);
1887 wlsc_compositor_add_binding(ec, KEY_BACKSPACE, 0,
1888 MODIFIER_CTRL | MODIFIER_ALT,
1889 terminate_binding, ec);
1891 create_pointer_images(ec);
1893 screenshooter_create(ec);
1895 glActiveTexture(GL_TEXTURE0);
1897 if (wlsc_shader_init(&ec->texture_shader,
1898 vertex_shader, texture_fragment_shader) < 0)
1900 if (init_solid_shader(&ec->solid_shader,
1901 ec->texture_shader.vertex_shader,
1902 solid_fragment_shader) < 0)
1905 loop = wl_display_get_event_loop(ec->wl_display);
1906 ec->idle_source = wl_event_loop_add_timer(loop, idle_handler, ec);
1907 wl_event_source_timer_update(ec->idle_source, option_idle_time * 1000);
1909 pixman_region32_init(&ec->damage);
1910 wlsc_compositor_schedule_repaint(ec);
1915 static int on_term_signal(int signal_number, void *data)
1917 struct wlsc_compositor *ec = data;
1919 wl_display_terminate(ec->wl_display);
1925 load_module(const char *name, const char *entrypoint, void **handle)
1927 char path[PATH_MAX];
1928 void *module, *init;
1931 snprintf(path, sizeof path, MODULEDIR "/%s", name);
1933 snprintf(path, sizeof path, "%s", name);
1935 module = dlopen(path, RTLD_LAZY);
1938 "failed to load module: %s\n", dlerror());
1942 init = dlsym(module, entrypoint);
1945 "failed to lookup init function: %s\n", dlerror());
1952 int main(int argc, char *argv[])
1954 struct wl_display *display;
1955 struct wlsc_compositor *ec;
1956 struct wl_event_loop *loop;
1958 void *shell_module, *backend_module;
1959 int (*shell_init)(struct wlsc_compositor *ec);
1960 struct wlsc_compositor
1961 *(*backend_init)(struct wl_display *display, char *options);
1962 char *backend = NULL;
1963 char *backend_options = "";
1967 static const char opts[] = "B:b:o:S:i:s:x";
1968 static const struct option longopts[ ] = {
1969 { "backend", 1, NULL, 'B' },
1970 { "backend-options", 1, NULL, 'o' },
1971 { "background", 1, NULL, 'b' },
1972 { "socket", 1, NULL, 'S' },
1973 { "idle-time", 1, NULL, 'i' },
1974 { "shell", 1, NULL, 's' },
1975 { "xserver", 0, NULL, 'x' },
1979 while (o = getopt_long(argc, argv, opts, longopts, &o), o > 0) {
1982 option_background = optarg;
1988 backend_options = optarg;
1991 option_socket_name = optarg;
1994 option_idle_time = strtol(optarg, &p, 0);
1997 "invalid idle time option: %s\n",
2011 display = wl_display_create();
2016 if (getenv("WAYLAND_DISPLAY"))
2017 backend = "wayland-backend.so";
2018 else if (getenv("DISPLAY"))
2019 backend = "x11-backend.so";
2020 else if (getenv("OPENWFD"))
2021 backend = "openwfd-backend.so";
2023 backend = "drm-backend.so";
2027 shell = "desktop-shell.so";
2029 backend_init = load_module(backend, "backend_init", &backend_module);
2033 shell_init = load_module(shell, "shell_init", &shell_module);
2037 ec = backend_init(display, backend_options);
2039 fprintf(stderr, "failed to create compositor\n");
2043 if (shell_init(ec) < 0)
2047 wlsc_xserver_init(display);
2049 if (wl_display_add_socket(display, option_socket_name)) {
2050 fprintf(stderr, "failed to add socket: %m\n");
2054 loop = wl_display_get_event_loop(ec->wl_display);
2055 wl_event_loop_add_signal(loop, SIGTERM, on_term_signal, ec);
2056 wl_event_loop_add_signal(loop, SIGINT, on_term_signal, ec);
2058 wl_list_init(&child_process_list);
2059 wl_event_loop_add_signal(loop, SIGCHLD, sigchld_handler, NULL);
2061 wl_display_run(display);
2063 if (ec->has_bind_display)
2064 ec->unbind_display(ec->display, display);
2065 wl_display_destroy(display);