From f8475c93669528bbaec730afee3acb39655c5c86 Mon Sep 17 00:00:00 2001 From: nobled Date: Wed, 5 Jan 2011 17:41:55 +0000 Subject: [PATCH] Fix window.c build without cairo-gl --- clients/window.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/clients/window.c b/clients/window.c index 22cbd287..67002352 100644 --- a/clients/window.c +++ b/clients/window.c @@ -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;