mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-04 23:28:07 +02:00
xcb: Re-enable glyph rendering
I lost the '&& 0' I put in to disable the glyph rendering until I had the glyph cache integration working again. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
a09f70586d
commit
c8bfa8c088
1 changed files with 1 additions and 1 deletions
|
|
@ -4727,7 +4727,7 @@ _cairo_xcb_surface_render_glyphs (cairo_xcb_surface_t *surface,
|
|||
return CAIRO_INT_STATUS_UNSUPPORTED;
|
||||
|
||||
status = CAIRO_INT_STATUS_UNSUPPORTED;
|
||||
if (surface->connection->flags & CAIRO_XCB_RENDER_HAS_COMPOSITE_GLYPHS && 0) {
|
||||
if (surface->connection->flags & CAIRO_XCB_RENDER_HAS_COMPOSITE_GLYPHS) {
|
||||
_cairo_scaled_font_freeze_cache (scaled_font);
|
||||
|
||||
status = _can_composite_glyphs (surface, &composite->bounded,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue