Add explicit NULLs for unimplmented backend functions to better document what might be improved here.

This commit is contained in:
Carl Worth 2005-10-25 16:02:08 +00:00
parent 8471ad29ab
commit e406f4b0f0
2 changed files with 12 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2005-10-25 Carl Worth <cworth@cworth.org>
* src/cairo-xcb-surface.c: Add explicit NULLs for unimplmented
backend functions to better document what might be improved here.
2005-10-25 Carl Worth <cworth@cworth.org>
* ROADMAP: Add critical bug #4863 to the 1.0.4 roadmap.

View file

@ -1040,7 +1040,13 @@ static const cairo_surface_backend_t cairo_xcb_surface_backend = {
NULL, /* _cairo_xcb_surface_set_clip_region */
NULL, /* intersect_clip_path */
_cairo_xcb_surface_get_extents,
NULL /* show_glyphs */
NULL, /* show_glyphs */
NULL, /* fill_path */
NULL, /* get_font_options */
NULL, /* flush */
NULL, /* mark_dirty_rectangle */
NULL, /* scaled_font_fini */
NULL /* scaled_glyph_fini */
};
/**