do not draw text with cairo directly on xlib pixmap (workaround for intel graphics bug, see emacs implementation)

This commit is contained in:
Chris Lee
2019-02-23 20:06:06 +01:00
parent 00f0bbd354
commit e1211a929f
3 changed files with 20 additions and 2 deletions

View File

@@ -478,14 +478,14 @@ void draw(Area *a)
a->_clear(a);
}
cairo_surface_t *cs = cairo_xlib_surface_create(server.display, a->pix, server.visual, a->width, a->height);
cairo_surface_t *cs = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, a->width, a->height);
cairo_t *c = cairo_create(cs);
draw_background(a, c);
if (a->_draw_foreground)
a->_draw_foreground(a, c);
draw_cairo_surface_to_xpixmap(cs, a->pix);
cairo_destroy(c);
cairo_surface_destroy(cs);
}