mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-02 09:01:39 -05:00
Merge remote branch 'nobled/fixes2'
This commit is contained in:
commit
4e63c6313b
3 changed files with 12 additions and 2 deletions
|
|
@ -222,10 +222,13 @@ allocate_buffer(struct gears *gears)
|
|||
window_draw(gears->window);
|
||||
|
||||
gears->surface[gears->current] = window_get_surface(gears->window);
|
||||
|
||||
#ifdef HAVE_CAIRO_GL
|
||||
image = display_get_image_for_drm_surface(gears->display,
|
||||
gears->surface[gears->current]);
|
||||
|
||||
#else /* XXX: hack to make Wayland compile, even if this example doesn't run */
|
||||
die("gears cannot allocate buffer: it was compiled without cairo-gl");
|
||||
return;
|
||||
#endif
|
||||
if (!eglMakeCurrent(gears->display, NULL, NULL, gears->context))
|
||||
die("faile to make context current\n");
|
||||
|
||||
|
|
|
|||
|
|
@ -536,8 +536,13 @@ display_get_pointer_surface(struct display *display, int pointer,
|
|||
cairo_surface_t *surface;
|
||||
|
||||
surface = display->pointer_surfaces[pointer];
|
||||
#if HAVE_CAIRO_GL
|
||||
*width = cairo_gl_surface_get_width(surface);
|
||||
*height = cairo_gl_surface_get_height(surface);
|
||||
#else
|
||||
*width = cairo_image_surface_get_width(surface);
|
||||
*height = cairo_image_surface_get_height(surface);
|
||||
#endif
|
||||
*hotspot_x = pointer_images[pointer].hotspot_x;
|
||||
*hotspot_y = pointer_images[pointer].hotspot_y;
|
||||
|
||||
|
|
|
|||
|
|
@ -51,10 +51,12 @@ display_get_compositor(struct display *display);
|
|||
EGLDisplay
|
||||
display_get_egl_display(struct display *d);
|
||||
|
||||
#ifdef HAVE_CAIRO_GL
|
||||
EGLImageKHR
|
||||
display_get_image_for_drm_surface(struct display *display,
|
||||
cairo_surface_t *surface);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
cairo_surface_t *
|
||||
display_create_surface(struct display *display,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue