mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-09 07:18:04 +02:00
Add explicit NULLs for unimplmented backend functions to better document what might be improved here.
This commit is contained in:
parent
8471ad29ab
commit
e406f4b0f0
2 changed files with 12 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue