diff options
| author | Kristian Høgsberg <krh@redhat.com> | 2009-01-26 22:54:40 -0500 |
|---|---|---|
| committer | Kristian Høgsberg <krh@redhat.com> | 2009-01-26 22:54:40 -0500 |
| commit | c0b44328d25900678bdff9b68a6760afafde5a6d (patch) | |
| tree | 22579793e731fb5abcfaadb8e0a73a7c9a7bd909 /wayland-system-compositor.c | |
| parent | Depend on udev 136 and clean up some code. (diff) | |
| download | wayland-c0b44328d25900678bdff9b68a6760afafde5a6d.tar wayland-c0b44328d25900678bdff9b68a6760afafde5a6d.tar.gz wayland-c0b44328d25900678bdff9b68a6760afafde5a6d.tar.bz2 wayland-c0b44328d25900678bdff9b68a6760afafde5a6d.tar.lz wayland-c0b44328d25900678bdff9b68a6760afafde5a6d.tar.xz wayland-c0b44328d25900678bdff9b68a6760afafde5a6d.tar.zst wayland-c0b44328d25900678bdff9b68a6760afafde5a6d.zip | |
Use glReadPixels() for the screen shooter
"Those who don't understand OpenGL are bound to reimplement it badly..."
Diffstat (limited to 'wayland-system-compositor.c')
| -rw-r--r-- | wayland-system-compositor.c | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/wayland-system-compositor.c b/wayland-system-compositor.c index a8922f3..1b16b5e 100644 --- a/wayland-system-compositor.c +++ b/wayland-system-compositor.c @@ -153,9 +153,8 @@ screenshooter_shoot(struct wl_client *client, struct screenshooter *shooter) { struct egl_compositor *ec = shooter->ec; struct wlsc_output *output; - GLuint stride; char buffer[256]; - GdkPixbuf *pixbuf; + GdkPixbuf *pixbuf, *normal; GError *error = NULL; void *data; int i; @@ -164,11 +163,25 @@ screenshooter_shoot(struct wl_client *client, struct screenshooter *shooter) output = container_of(ec->output_list.next, struct wlsc_output, link); while (&output->link != &ec->output_list) { snprintf(buffer, sizeof buffer, "wayland-screenshot-%d.png", i++); - data = eglReadBuffer(ec->display, output->surface, GL_FRONT_LEFT, &stride); + data = malloc(output->width * output->height * 4); + if (data == NULL) { + fprintf(stderr, "couldn't allocate image buffer\n"); + continue; + } + + glReadBuffer(GL_FRONT); + glPixelStorei(GL_PACK_ALIGNMENT, 1); + glReadPixels(0, 0, output->width, output->height, + GL_RGBA, GL_UNSIGNED_BYTE, data); + pixbuf = gdk_pixbuf_new_from_data(data, GDK_COLORSPACE_RGB, TRUE, - 8, output->width, output->height, stride, + 8, output->width, output->height, output->width * 4, NULL, NULL); - gdk_pixbuf_save(pixbuf, buffer, "png", &error, NULL); + normal = gdk_pixbuf_flip(pixbuf, FALSE); + gdk_pixbuf_save(normal, buffer, "png", &error, NULL); + gdk_pixbuf_unref(normal); + gdk_pixbuf_unref(pixbuf); + free(data); output = container_of(output->link.next, struct wlsc_output, link); @@ -788,6 +801,7 @@ init_egl(struct egl_compositor *ec, struct udev_device *device) EGL_DEPTH_SIZE, 0, EGL_STENCIL_SIZE, 0, EGL_CONFIG_CAVEAT, EGL_NONE, + EGL_RED_SIZE, 8, EGL_NONE }; |
