[cairo-commit] src/cairo-image-surface.c

Chris Wilson ickle at kemper.freedesktop.org
Mon Feb 20 13:07:35 PST 2012


 src/cairo-image-surface.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 2d74eaf92f086a1e6119241b7dd34f44bf795967
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Mon Feb 20 21:02:55 2012 +0000

    image: Add the get-font-options callback again.
    
    In the midst of trying to simply export the
    _cairo_image_surface_get_font_options() for subclassing, I accidentally
    decoupled it from the image surface backend. Mea culpa.
    
    Fixes regression from 8bea52bb (Add preliminary damage tracking), which
    should not have even touched the backend structure except for an ugly
    rebasing.
    
    Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>

diff --git a/src/cairo-image-surface.c b/src/cairo-image-surface.c
index 982bf45..2a2d59d 100644
--- a/src/cairo-image-surface.c
+++ b/src/cairo-image-surface.c
@@ -998,7 +998,7 @@ const cairo_surface_backend_t _cairo_image_surface_backend = {
     NULL, /* show_page */
 
     _cairo_image_surface_get_extents,
-    NULL,
+    _cairo_image_surface_get_font_options,
 
     NULL, /* flush */
     NULL,


More information about the cairo-commit mailing list