2005-06-10 13:19:45 +00:00
|
|
|
Changes that are expected to impact the public API
|
|
|
|
|
==================================================
|
|
|
|
|
|
2005-03-09 13:56:37 +00:00
|
|
|
Patch submitted to mailing list?
|
2005-03-10 09:02:41 +00:00
|
|
|
/ Documentation included in patch?
|
|
|
|
|
|/ Review of patch completed?
|
2005-03-18 11:15:25 +00:00
|
|
|
||/ Test case included?
|
2005-03-10 09:02:41 +00:00
|
|
|
|||/ Committed.
|
|
|
|
|
||||/
|
2005-06-10 13:19:45 +00:00
|
|
|
Backwards compatible (API additions only)
|
|
|
|
|
-----------------------------------------
|
2005-05-06 13:42:45 +00:00
|
|
|
cairo_begin_group, cairo_end_group, cairo_get_group
|
2005-08-06 16:57:14 +00:00
|
|
|
PDR C cairo_surface_mark_dirty (see below for details)
|
2005-08-08 18:35:22 +00:00
|
|
|
PDRTC Add support for non-antialiased rendering + API
|
2005-06-10 13:19:45 +00:00
|
|
|
Add CAIRO_FILL_RULE_INVERSE_WINDING and CAIRO_FILL_RULE_INVERSE_EVEN_ODD
|
|
|
|
|
Add cairo_text_glyphs (see below for details)
|
|
|
|
|
Add support for programmatic patterns, (ie. arbitrary gradients)
|
2005-08-06 16:57:14 +00:00
|
|
|
P Add cairo_arc_to.
|
2005-06-10 13:19:45 +00:00
|
|
|
Add support for custom caps (see below for details)
|
|
|
|
|
Add support for getting at image data from image surface
|
2005-06-15 16:52:11 +00:00
|
|
|
Add CAIRO_STATUS_DESTROYED
|
2005-06-15 10:54:00 +00:00
|
|
|
Add cairo_finish
|
2005-06-10 13:19:45 +00:00
|
|
|
|
|
|
|
|
Backwards incompatible (API deletions or changes)
|
|
|
|
|
-------------------------------------------------
|
2005-03-28 14:06:40 +00:00
|
|
|
PDR C cairo_surface_finish, cairo_surface_flush
|
2005-04-08 13:44:22 +00:00
|
|
|
PDR C A hidden offset for the xlib backend
|
2005-08-06 16:57:14 +00:00
|
|
|
PDR C Consistent error handling for all objects
|
|
|
|
|
PDRTC Split cairo_format_t (see below for details)
|
2005-06-15 10:54:00 +00:00
|
|
|
P---C Remove cairo_status_string in favor of cairo_status_to_string
|
2005-02-23 14:56:55 +00:00
|
|
|
|
2005-06-10 13:19:45 +00:00
|
|
|
Details on some of the above changes
|
|
|
|
|
------------------------------------
|
|
|
|
|
* cairo_text_glyphs:
|
2005-01-06 10:28:10 +00:00
|
|
|
|
2005-06-10 13:19:45 +00:00
|
|
|
It would function as a sort of bridge between the toy and the
|
|
|
|
|
real text APIs:
|
|
|
|
|
|
|
|
|
|
> void
|
|
|
|
|
> cairo_text_glyphs (cairo_t *cr, const unsigned char *utf8,
|
|
|
|
|
> cairo_glyph_t *glyphs, int *num_glyphs);
|
|
|
|
|
>
|
|
|
|
|
> with num_glyphs as an input-output parameter. The behavior of this
|
|
|
|
|
> function would be such that calling:
|
|
|
|
|
>
|
|
|
|
|
> cairo_text_glyphs (cr, string, glyphs, &num_glyphs);
|
|
|
|
|
> cairo_show_glyphs (cr, glyphs, num_glyphs);
|
|
|
|
|
>
|
|
|
|
|
> would be equivalent too:
|
|
|
|
|
>
|
|
|
|
|
> cairo_show_text (cr, string);
|
|
|
|
|
>
|
|
|
|
|
> as long as the original size of glyphs/num_glyphs was large
|
|
|
|
|
> enough.
|
|
|
|
|
|
|
|
|
|
* support for custom caps:
|
|
|
|
|
|
|
|
|
|
It would be nice if the user had a mechanism to reliably draw custom
|
|
|
|
|
caps. One approach here would be to provide the coordinates of the
|
|
|
|
|
butt cap faces so that the user can append seamless caps to the
|
|
|
|
|
current path. We may also need to provide the coordinates of the
|
|
|
|
|
faces of every dash as well.
|
|
|
|
|
|
|
|
|
|
Changes that do not affect the public API
|
|
|
|
|
=========================================
|
|
|
|
|
* Fix clipping to work for all operators. The equation we have come up
|
|
|
|
|
with is:
|
2004-02-13 06:13:19 +00:00
|
|
|
|
2005-06-10 13:19:45 +00:00
|
|
|
((src Op dest) In clip) Add (dest Out clip)
|
|
|
|
|
|
2003-11-17 07:04:15 +00:00
|
|
|
* Change stroke code to go through one giant polygon. This will fix
|
2005-06-10 13:19:45 +00:00
|
|
|
problems with stroking self-intersecting paths.
|
2003-11-17 07:04:15 +00:00
|
|
|
|
2003-11-10 08:16:34 +00:00
|
|
|
* Fix the intersection problem, (see reference to Hobby's paper
|
2005-06-10 13:19:45 +00:00
|
|
|
mentioned in cairo_traps.c).
|
2004-04-02 08:01:09 +00:00
|
|
|
|
2003-12-16 06:15:53 +00:00
|
|
|
* Implement dashing for cairo_curve_to.
|
|
|
|
|
|
2004-05-07 18:52:01 +00:00
|
|
|
* Stroking closed, degenerate paths should still draw caps. Round
|
2004-10-21 08:55:46 +00:00
|
|
|
caps are easy; square should probably draw an axis-aligned square.
|
|
|
|
|
|
2005-01-06 08:51:48 +00:00
|
|
|
* Should add geometry pruning as appropriate.
|
|
|
|
|
|
2003-11-17 07:04:15 +00:00
|
|
|
* Verification, profiling, optimization.
|
|
|
|
|
|
2004-12-23 13:49:56 +00:00
|
|
|
centi_unfinished.svg may provide a good test case.
|