2009-12-07 Rolf Bjarne Kvinge <RKvinge@novell.com>
[moon.git] / cairo / NEWS
blob5be426cdcd9de03e6c364a8814751a90b6084d29
1 Release 1.8.4 (2008-11-14 Carl Worth <cworth@cworth.org>)
2 =========================================================
3 The cairo community is pleased to announce the 1.8.4 release of the
4 cairo graphics library. This is the second update to cairo's stable
5 1.8 series and contains a small number of bug fixes, (in particular a
6 few fixes for build failures of cairo 1.8.2 on various systems). This
7 is being released just over two weeks after cairo 1.8.2.
9 We recommend that everyone using cairo upgrade to 1.8.4.
11 -Carl
13 Build fixes
14 -----------
15 Fix build with older XRender that doesn't define RepeatNone:
17    Build of xlib backend fails against old XRender (RepeatNone undeclared)
18    https://bugs.freedesktop.org/show_bug.cgi?id=18385
20 Fix build with bash version <= 3.0:
22    doltlibtool broken on linux with bash 3.00.0
23    https://bugs.freedesktop.org/show_bug.cgi?id=18363
25 Bug fixes
26 ---------
27 Avoid triggering a bug in X.org server 6.9 resulting in a hung machine
28 requiring a reboot:
30     https://bugs.freedesktop.org/show_bug.cgi?id=15628#c2
32 Fix display of user fonts as exercised by proposed support for type3
33 fonts in poppler (unsigned promotion fixes):
35     Use cairo user-font for Type 3 fonts
36     http://lists.freedesktop.org/archives/poppler/2008-October/004181.html
38 Avoid miscomputing size of fallback images required when rendering
39 with CLEAR, IN, or SOURCE operator to vector surfaces, (PS, PDF, SVG,
40 etc.).
42 Be more tolerant of broken fonts when subsetting type1 fonts:
44    Error handling in cairo_type1_font_subset_get_glyph_names_and_widths
45    http://lists.cairographics.org/archives/cairo/2008-October/015569.html
47 Fix cairo_fill_extents, cairo_stroke_extents, cairo_path_extents, to
48 correctly allow NULL parameters as documented.
50 Fix potential crash on emitting a type3 glyph after having drawn text
51 paths from the same font, (for example with cairo_text_path).
53 Release 1.8.2 (2008-10-29 Carl Worth <cworth@cworth.org>)
54 =========================================================
55 The cairo community is pleased to announce the 1.8.2 release of the
56 cairo graphics library. This is the first update to cairo's stable 1.8
57 series and contains a large number of bug fixes. It is being released
58 just over one month since cairo 1.8.0.
60 This release consists primarily of bug fixes, but there is one notable
61 new feature, (the ability to build cairo without an external font
62 backend), and there are a few optimizations as well. See below for
63 details on these changes and the most important bug fixes.
65 While many people have contributed to this release, Chris Wilson
66 deserves particular mention. He has contributed well over twice as
67 many changes to cairo since 1.8.0 than everyone else combined. We
68 greatly appreciate the tremendous efforts of Chris and all cairo
69 contributors.
71 We recommend everyone upgrade to cairo 1.8.2 and hope that everyone
72 will have lots of fun with cairo!
74 -Carl
76 New feature
77 -----------
78 It is now possible to build cairo without any font backend, (such as
79 freetype, win32 or quartz). This is most useful when the application
80 provides custom font rendering through the user-font API. But in the
81 case where no external font backend is available, and no user-font is
82 provided, cairo will render with a failsafe font, (a stroked font
83 covering visible ASCII character). (Behdad Esfahbod)
85 Optimizations
86 -------------
87 Dramatically speed up compilation with dolt (removes much of the
88 libtool overhead) (Behdad Esfahbod with thanks to Josh Triplett).
90 Several minor optimizations to tessellator (special-cased comparisons,
91 faster insert for skiplist, etc.) (Chris Wilson).
93 Optimize away fractional translation component when doing
94 EXTEND_NEAREST filtering, (for better performance).
96 General bug fixes
97 -----------------
98 Allow cloning sub-regions of similar surfaces to fix this bug
99 (Chris Wilson):
101         Crafted gif file will crash firefox
102         [XError: 'BadAlloc (insufficient resources for operation)']
103         https://bugzilla.mozilla.org/show_bug.cgi?id=424333
105 Fix some matrix confusion to fix this regression (Chris Wilson):
107         Translucent star exports in a wrong way to PDF
108         https://bugs.launchpad.net/inkscape/+bug/234546
110 Fix some long-standing bugs with respect to properly computing the
111 extents of transformed, filtered surfaces (Owen Taylor, Carl Worth,
112 and Chris Wilson):
114         Bad clipping with EXTEND_NONE
115         http://bugs.freedesktop.org/show_bug.cgi?id=15349
117         Improve filtering handling in cairo-pattern.c
118         http://bugs.freedesktop.org/show_bug.cgi?id=15367
120         Many thanks to Chris Wilson for digging out and cleaning up
121         these fixes.
123 Fix compilation on Solaris 10 (Chris Wilson):
125         Cairo requires -DREENTRANT (along with  -D_POSIX_THREAD_SEMANTICS)
126         to compile on Solaris 10 with pthreads
127         https://bugs.freedesktop.org/show_bug.cgi?id=18010
129 Fix very old bug causing dashes to be rendered at the wrong length in
130 fallback images (Adrian Johnson)
132         Dashed strokes too long in fallback images
133         https://bugs.freedesktop.org/show_bug.cgi?id=9189
135 Fix broken dashing when a dashed path starts outside the clip region
136 (Chris Wilson).
138 Avoid range overflow when computing large patterns (Benjamin Otte and
139 Chris Wilson).
141 Avoid crashing due to an invalid font with an incorrect entry in its
142 CMAP table (Adrian Johnson).
144 Fix bugs in computing maximum size of text requests that can be sent
145 with the Render extension, (avoiding potential crashes when rendering
146 large amounts of text) (Behdad Esfahbod and Chris Wilson).
148 Fix rendering of operators unbounded by the mask (Chris Wilson).
150 Fix compilation on systems without compiler support for a native
151 64-bit type (Chris Wilson).
153 Fix several cases of missing error-status propagation. (Chris Wilson,
154 doing the work he seems to never tire of).
156 Fix several locking issues found with the lockdep valgrind skin (Chris
157 Wilson).
159 Backend-specific bug fixes
160 --------------------------
161 xlib: Avoid crash due to attempting XRender calls on pixmaps with
162 formats not supported by the Render extension (Chris Wilson):
164         XRender crashes due to NULL pointer from Cairo on SGI O2
165         https://bugs.freedesktop.org/show_bug.cgi?id=1173
167 xlib: Add support for XImages with depth of 4, 20, 24, or 28 bits
168 (Chris Wilson):
170         cairo doesn't support 24 bits per pixel mode on X11
171         https://bugs.freedesktop.org/show_bug.cgi?id=9102
173 xlib: Avoid mistakenly considering two surfaces as similar just
174 because their depths match (while their Render formats do not) (Karl
175 Tomlinson).
177 ps: Fix slight mis-scaling of bitmapped fonts (Adrian Johnson)
179 svg: Correctly emit comp-op for paint, mask, and show_glyphs
180 operations (Emmanuel Pacaud).
182 svg: Use finer-grained fallbacks for SVG 1.2 (as PS and PDF backends
183 have been doing since 1.6.0) (Chris Wilson).
185 win32: Fallback to DIB if DDB create fails for
186 cairo_surface_create_similar (Vladimir Vukicevic).
188 win32: Fix compatibility with Windows Mobile (Vladimir Vukicevic).
190 win32: Fix static builds to not do __declspec(dllimport) on public
191 functions. This requires the user to set a CAIRO_WIN32_STATIC_BUILD
192 environment variable when compiling (Behdad Esfahbod).
194 Release 1.8.0 (2008-09-25 Carl Worth <cworth@cworth.org>)
195 =========================================================
196 The cairo community is happy (and relieved) to announce the 1.8.0
197 release of the cairo graphics library. This is a major update to
198 cairo, with new features and enhanced functionality which maintains
199 compatibility for applications written using any previous major cairo
200 release, (1.6, 1.4, 1.2, or 1.0). We recommend that anybody using a
201 previous version of cairo upgrade to cairo 1.8.0.
203 The dominant theme of this release is improvements to cairo's ability
204 to handle text. The highlights include a new "user fonts" feature as
205 well as a new cairo_show_text_glyphs API which allows glyphs to be
206 embedded in PDF output along with their original text, (for searching,
207 selection, and copy-and-paste). Another major feature is a revamp of
208 cairo's build system making it much easier to build cairo on various
209 platforms.
211 See below for more details.
213 User fonts
214 ----------
215 This new API allows the user of cairo API to provide drawings for
216 glyphs in a font. A common use for this is implementing fonts in
217 non-standard formats, like SVG fonts and Flash fonts. This API can
218 also be used by applications to provide custom glyph shapes for fonts
219 while still getting access to cairo's glyph caches. See
220 test/user-font.c and test/user-font-proxy.c for usage examples. This
221 is based on early work by Kristian Høgsberg. Thanks Kristian!
223 This new API consists of the following functions (and corresponding
224 _get functions):
226         cairo_user_font_face_create
228         cairo_user_font_face_set_init_func
229         cairo_user_font_face_set_render_glyph_func
230         cairo_user_font_face_set_text_to_glyphs_func
231         cairo_user_font_face_set_unicode_to_glyph_func
233 An additional, new API is
235         cairo_scaled_font_text_to_glyphs
237 We were previously reluctant to provide this function as
238 text-to-glyphs support in cairo was limited to "toy" font
239 functionality, not really interesting for real-world text
240 processing. However, with user fonts landing, this API is needed to
241 expose full access to how user fonts convert text to glyphs. This is
242 expected to be used by text toolkits like Pango, as well as "proxy"
243 user-font implementations.
245 cairo_show_text_glyphs
246 ----------------------
247 This new API allows the caller of cairo to provide text data
248 corresponding to glyphs being drawn. The PDF backend implements this
249 new API so that complex text can be copied out of cairo's PDF output
250 correctly and reliably, (assuming the user of cairo calls
251 cairo_show_text_glyphs). The cairo_show_text_glyphs API is definitely
252 the most daunting API to debut in cairo. It is anticipated that pango
253 (and similar high-level text libraries) will be the primary users of
254 this API. In fact, pango 1.22 already uses cairo_show_text_glyphs.
255 Behdad was the architect and implementor of this effort. Thanks,
256 Behdad!
258 The cairo_show_text_glyphs API includes the following new functions:
260         cairo_show_text_glyphs
262         cairo_glyph_allocate
263         cairo_glyph_free
265         cairo_text_cluster_allocate
266         cairo_text_cluster_free
268         cairo_surface_has_show_text_glyphs
270 Build system revamp
271 -------------------
272 The primary goal of the revamp is to make the build system less
273 fragile, (particularly for non-Linux platforms). For example, now
274 people building on win32 will no longer need to maintain a
275 platform-specific list of files to be built. See the new README.win32
276 for details. Also, the .so file will now be installed with a different
277 naming scheme, (for example, 1.7.6 will install with a .10800
278 suffix). Many thanks to Behdad and his small army of helpers!
280 Assorted API additions
281 ----------------------
282 For API completeness, several missing "getter" functions were added:
284         cairo_scaled_font_get_scale_matrix
286         cairo_surface_get_fallback_resolution
288         cairo_toy_font_face_create
289         cairo_toy_font_face_get_family
290         cairo_toy_font_face_get_slant
291         cairo_toy_font_face_get_weight
293 The new cairo_toy_font_face functions provide access to functionality
294 and settings provided by cairo_select_font_face(). Thanks Behdad!
296 cairo-ps/cairo-pdf: More efficient output
297 -----------------------------------------
298 Adrian Johnson has been busy fixing all kinds of bugs in PS and PDF
299 backends, as well making them generate much more compact output by
300 avoiding things like re-emitting the color or linestyle on every
301 drawing operation. Thanks Adrian!
303 cairo-xlib: dithering
304 ---------------------
305 Dithering: Cairo now does simple dithering when rendering to legacy X
306 servers. This is most visible with 8-bit visuals. Thanks Behdad!
308 cairo-xlib: Avoid rendering glyphs out of surface bounds
309 --------------------------------------------------------
310 This seemingly harmless optimization exposed a bug in OpenOffice.org 3
311 versions where OO.o was passing bogus surface extents to cairo,
312 resulting in no text rendered in OO.o. Please contact your
313 distribution's OO.o maintainers if you see this bug and point them to
314 the following URL:
316  https://bugs.freedesktop.org/show_bug.cgi?id=16209
318 cairo-xlib: Improved performance with X server without Render
319 -------------------------------------------------------------
320 Cairo now performs better on remote X servers that lack the Render
321 extension by being smarter about using X core protocol facilities
322 instead of falling back to doing all rendering on the client side.
324 cairo-ft: respecting FC_FT_FACE
325 -------------------------------
326 Previously it was impossible to instruct cairo to do emboldening on a
327 font face object created from an FT_Face. Cairo now respects and uses
328 the FC_FT_FACE fontconfig pattern element, so emboldening can be
329 achieved by using cairo_ft_font_face_create_for_pattern() and a
330 carefully crafted pattern using FC_FT_FACE and FC_EMBOLDEN. Thanks
331 Behdad!
333 cairo-directfb: backend improvements
334 ------------------------------------
335 The directfb backend, though still unsupported, has seen a good deal
336 of improvements. Thanks Vlad!
338 Bug fixing and optimizations
339 ----------------------------
340 xlib: Faster bookkeeping (Karl Tomlinson)
341         https://bugzilla.mozilla.org/show_bug.cgi?id=453199#c5
343 PS: Fix gradients with non-constant alpha (Chris Wilson)
345 Fix deadlock in user-font code (Richard Hughes and Behdad Esfahbod)
346         http://bugs.freedesktop.org/show_bug.cgi?id=16819
348 Countless other bugs have been fixed and optimizations made, many of
349 them thanks to Chris Wilson. Thanks Chris and others!
351 Note also that the code that had been in cairo 1.7.x calling into
352 freetype's optional lcd_filter function was removed from cairo before
353 the 1.8.0 release. We do expect this code to come back in some form in
354 the future.
356 Snapshot 1.7.6 (2008-09-17 Carl Worth <cworth@cworth.org>)
357 ==========================================================
358 The cairo community is happy to announce the 1.7.6 snapshot of the
359 cairo graphics library. This is a "release candidate" for the upcoming
360 1.8.0 release, so we will greatly appreciate any reports of problems
361 in this release, and no major changes are currently planned before
362 1.8.
364 Notable changes in 1.7.6
365 ------------------------
366 The largest number of changes since 1.7.4 did not change the
367 implementation of cairo itself, but instead revamped cairo's build
368 system. The primary goal of the revamp is to make the build system
369 less fragile, (particularly for non-Linux platforms). For example, now
370 people building on win32 will no longer need to maintain a
371 platform-specific list of files to be built. Also, the .so file will
372 now be installed with a different naming scheme, (for example, 1.7.6
373 will install with a .10706 suffix). Much thanks, Behdad!
375 And, as usual, Chris Wilson has made another large round of robustness
376 improvements, (eliminating dead code, fixing propagation of error
377 status values, test suite improvements, etc. etc.). Thanks as always,
378 Chris!
380 API changes since 1.7.4
381 -----------------------
382 There have been a few changes of API that was new during the 1.7
383 series:
385 * Remove cairo_font_options_set_lcd_filter
386    and cairo_font_options_get_lcd_filter
388   Motivation: At the Cairo Summit, this API was determined to be too
389         specific to the freetype font backend to be in the general
390         API. A similar API with a cairo_ft prefix might be introduced
391         in the future. Note that cairo will still respect the
392         corresponding fontconfig settings for these options.
394 * Replace cairo_has_show_glyphs
395      with cairo_surface_has_show_glyphs
397   Motivation: This really is a surface-specific interface, and the
398         convenience function on the cairo_t is not obviously
399         necessary. An application can easily call:
401         cairo_surface_has_show_glyphs (cairo_get_target (cr));
403         as needed.
405 * Add cairo_text_cluster_flags_t
406    to cairo_show_text_glyphs
407       cairo_scaled_font_text_to_glyphs
408       cairo_user_scaled_font_text_to_glyphs_func_t
410   Motivation: This flag, (and specifically the
411         CAIRO_TEXT_CLUSTER_FLAG_BACKWARD value), replaces the
412         cairo_bool_t backward argument in each of the above
413         interfaces. This leads to more readable user code, and also
414         allows future extensibility.
416 As always, there are no changes to any API from any major cairo
417 release, (1.0.x, 1.2.x, 1.4.x, 1.6.x). Cairo maintains the same
418 compatibility promise it always has.
420 Bug fixes since 1.7.4
421 ---------------------
422 xlib: Faster bookkeeping (Karl Tomlinson)
423         https://bugzilla.mozilla.org/show_bug.cgi?id=453199#c5
425 PS: Fix gradients with non-constant alpha (Chris Wilson)
427 Fix deadlock in user-font code (Richard Hughes and Behdad Esfahbod)
428         http://bugs.freedesktop.org/show_bug.cgi?id=16819
430 Several other minor fixes.
432 Snapshot 1.7.4 (2008-08-11 Behdad Esfahbod <behdad@behdad.org>)
433 ===============================================================
434 The cairo community is embarrassed to announce availability of the 1.7.4
435 snapshot of the cairo graphics library.  This is a followup release to the
436 1.7.2 snapshot to ship a tarball that can actually be built.  The only
437 change since 1.7.4 is including the missing header file
438 cairo-user-font-private.h in the distribution.
440 Snapshot 1.7.2 (2008-08-11 Behdad Esfahbod <behdad@behdad.org>)
441 ===============================================================
442 The cairo community is finally ready to announce availability of the 1.7.2
443 snapshot of the cairo graphics library.  This is embarrassingly the first
444 snapshot in the 1.7 unstable series of cairo, leading to the eventual release
445 of cairo 1.8, currently planned for late September.
447 This snapshot comes four months after the 1.6.4 release.  We have done a
448 really bad job on getting development snapshots out this cycle, but
449 hopefully all the API changes for 1.8 are now finished and the remaining
450 weeks will be spent on bug-fixing.  There is more than 400 commits worth
451 of changes in this snapshot, and those can use some testing.  Read on!
453 Text, text, and more text!
454 --------------------------
455 The dominant theme of this release, and 1.8 in general, is improvements
456 around cairo text API.  Here is a high-level list of changes with text
457 handling:
459 User fonts
460 ----------
461 This is new API allowing the user of cairo API to provide drawings for glyphs
462 in a font.  This is most useful in implementing fonts in non-standard formats,
463 like SVG fonts and Flash fonts, but can also be used by games and other
464 applications to draw "funky" fonts.  See test/user-font.c and
465 test/user-font-proxy.c for usage examples.  This is based on early work by
466 Kristian Høgsberg.  Thanks Kristian!
468 show_text_glyphs
469 ----------------
470 This new API allows the caller of cairo to mark text glyphs with their
471 original text.  The PDF backend implements this new API and latest Pango
472 master uses it.  The result is (when bugs are fixed) that complex text can be
473 copied out of pangocairo's PDF output correctly and reliably.  There are bugs
474 to fix though.  A few poppler bugs, and some more in cairo and pango.
476 To test show_text_glyph, just grab pango master and this cairo snapshot and
477 print text in gedit.  Open in acroread or evince, select all, copy, paste
478 in gedit and compare.  The Arabic text with diacritic marks is particularly
479 showing bad.  Try with pango/pango-view/HELLO.txt if you are brave
480 enough.  The Indic text is showing improvements, but is still coming out
481 buggy.
483 LCD subpixel filtering using FreeType
484 -------------------------------------
485 FreeType 2.3.5 added support for various LCD subpixel filtering, and
486 fontconfig 2.6.0 added support for configuring LCD filter on a font by font
487 basis.  Cairo now relies on FreeType and fontconfig for subpixel filtering.
488 This work is based on David Turner's original patch to cairo, maintained
489 and tested by Sylvain Pasche and others.  Thanks all!
491 Toy font face constructor and getter
492 ------------------------------------
493 Mostly for API completion, but also useful for higher level (like Pango) to
494 hook into what the user has set using cairo_select_font_face(), making that
495 toy API a bit more useful.
497 FreeType: respecting FC_FT_FACE
498 -------------------------------
499 Previously it was impossible to instruct cairo to do emboldening on a font
500 face object created from an FT_Face.  Cairo now respects and uses the
501 FC_FT_FACE fontconfig pattern element, so emboldening can be achieved by
502 using cairo_ft_font_face_create_for_pattern() and a carefully crafted pattern
503 using FC_FT_FACE and FC_EMBOLDEN.
506 PS/PDF: More efficient output
507 -----------------------------
508 Adrian Johnson has been busy fixing all kinds of bugs in PS and PDF
509 backends, as well making them generate much more compact output by avoiding
510 things like re-emitting the color or linestyle on every drawing operation.
511 Thanks Adrian!
514 Xlib: Dithering
515 ---------------
516 Cairo now does simple dithering when rendering to legacy X servers.  This is
517 mostly visible with 8-bit visuals.
519 Xlib: Avoid rendering glyphs out of surface bounds
520 --------------------------------------------------
521 This seemingly harmless change manifested a bug with OpenOffice.org 3 versions
522 where OO.o was passing bogus surface extents to cairo, resulting in no text
523 rendered in OO.o.  Please contact your distro's OO.o maintainers if you see
524 this bug and point them to the following URL:
526   https://bugs.freedesktop.org/show_bug.cgi?id=16209
528 Xlib: Improved performance with Xrender-less X servers
529 ------------------------------------------------------
530 Cairo now performs better on remote, Xrender-less X servers by being smarter
531 about using X core protocol facilities instead of falling back to doing all
532 rendering on the client side.
535 Directfb: backend improvements
536 ------------------------------
537 The directfb backend, though still unsupported, has seen a good deal of
538 improvements.  Thanks Vlad!
541 Bug fixing and optimizations
542 ----------------------------
543 Countless bugs have been fixed and optimizations made, many of them thanks to
544 Chris Wilson.  Thanks Chris!
547 API additions
548 -------------
550 cairo_show_text_glyphs
552   This is a new text rendering API.  Being a more advanced version of
553   cairo_show_glyphs(), it is aimed for use by higher-level text toolkits like
554   Pango, and enables better text extraction from output generated by backends
555   like PDF and SVG.  The PDF backend already implements it, and the upcoming
556   Pango release will use it.
558   To make that API work, a bunch of other additions were made:
560 cairo_glyph_allocate
561 cairo_glyph_free
562 cairo_text_cluster_t
563 cairo_text_cluster_allocate
564 cairo_text_cluster_free
565 cairo_surface_has_show_text_glyphs
568 cairo_user_font_face_create
570   This is the "user" font face constructor, accompanied by a variety of method
571   signatures, getters, and setters for a callback-based font backend:
573 CAIRO_FONT_TYPE_USER
574 cairo_user_scaled_font_init_func_t
575 cairo_user_scaled_font_render_glyph_func_t
576 cairo_user_scaled_font_text_to_glyphs_func_t
577 cairo_user_scaled_font_unicode_to_glyph_func_t
578 cairo_user_font_face_set_init_func
579 cairo_user_font_face_set_render_glyph_func
580 cairo_user_font_face_set_text_to_glyphs_func
581 cairo_user_font_face_set_unicode_to_glyph_func
582 cairo_user_font_face_get_init_func
583 cairo_user_font_face_get_render_glyph_func
584 cairo_user_font_face_get_text_to_glyphs_func
585 cairo_user_font_face_get_unicode_to_glyph_func
588 cairo_scaled_font_text_to_glyphs
590   We were previously reluctant to provide this function as text-to-glyphs
591   support in cairo was limited to "toy" font functionality, not really
592   interesting for real-world text processing.  However, with user-fonts
593   landing, this API is needed to expose full access to how user-fonts
594   convert text to glyphs.  This is expected to be used by text toolkits like
595   Pango, as well as "proxy" user-font implementations.
598 cairo_lcd_filter_t
599 cairo_font_options_set_lcd_filter
600 cairo_font_options_get_lcd_filter
602   These add the possibility to choose between various available LCD subpixel
603   filters.  The available filter values are modeled after what FreeType
604   provides.
607 cairo_toy_font_face_create
608 cairo_toy_font_face_get_family
609 cairo_toy_font_face_get_slant
610 cairo_toy_font_face_get_weight
612   These provide access to functionality and settings provided by
613   cairo_select_font_face().
616 cairo_scaled_font_get_scale_matrix
617 cairo_surface_get_fallback_resolution
619   For API completeness.
622 Various new values for cairo_status_t enum
625 Known issues:
627 - Type3 fonts generated by cairo's PDF backend may show up in poppler/Evince
628   in a different color than expected.  This is fixed in poppler master branch.
629   This mostly affects cairo user fonts.  The test case test/user-font.c
630   demonstrates this.
632 - User fonts using other fonts in their rendering are currently embedded in
633   PDF as fallback bitmap glyphs.  This will be (hopefully) fixed before 1.8.
634   The test case test/user-font-proxy.c demonstrates this.
637 Release 1.6.4 (2008-04-11 Carl Worth <cworth@cworth.org>)
638 =========================================================
639 The cairo community is wildly embarrassed to announce the 1.6.4
640 release of the cairo graphics library. This release reverts the xlib
641 locking change introduced in 1.6.4, (and the application crashes that
642 it caused).  The community would be glad to sack its current release
643 manager and is accepting applications for someone who could do the job
644 with more discipline.
646 Revert 'add missing locking in cairo-xlib'
647 ------------------------------------------
648 This change was introduced in cairo 1.6.2, but also introduced a bug
649 which causes many cairo-xlib applications to crash, (with a
650 segmentation fault inside of XSetClipMask). Instead of attempting
651 another fix for the broken fix, the change in 1.6.2 has been
652 reverted. The original bug which the change was addressing has been
653 present since at least cairo 1.4, so it is not expected that leaving
654 this bug unfixed will cause any new problems for applications moving
655 from cairo 1.4 to cairo 1.6.
657 At this point, the code of cairo 1.6.4 differs from cairo 1.6.0 only
658 in the fix for the PostScript-printer crashes.
660 Tweak build to avoid linking with g++
661 -------------------------------------
662 Cairo 1.6.4 avoids a quirk in automake that was causing the cairo
663 library to be linked with g++ and linked against libstdc++ even when
664 only C source files were compiled for the library.
666 Release 1.6.2 (2008-04-11 Carl Worth <cworth@cworth.org>)
667 =========================================================
668 The cairo community is pleased (but somewhat sheepish) to announce the
669 1.6.2 release of the cairo graphics library. This is an update to
670 yesterday's 1.6.0 release with an important fix to prevent cairo's
671 PostScript output from crashing some printers. This release also
672 includes a locking fix for cairo's xlib backend to improve thread
673 safety. There are no changes beyond these two fixes.
675 Fix for PostScript printer crash
676 --------------------------------
677 Adrian Johnson discovered that cairo 1.6.0 was being a bit hard on
678 PostScript printers, by changing the font matrix very frequently. This
679 causes some PostScript interpreters to allocate new font objects every
680 few glyphs, eventually exhausting available resources. The fix
681 involves leaving translational components of the font matrix as zero,
682 so that the PostScript interpreter sees an identical font matrix
683 repeatedly, and can more easily share internal font object resources.
685 This fix has been tested to resolve the bugs posted here, (for both
686 Xerox and Dell printers):
688         Printing some PDFs from evince is crashing our Xerox printer
689         http://bugs.freedesktop.org/show_bug.cgi?id=15348
691         Cairo-generated postscript blocks Dell 5100cn
692         http://bugs.freedesktop.org/show_bug.cgi?id=15445
694 Add missing locking in cairo-xlib
695 ---------------------------------
696 Chris Wilson noticed that cairo 1.6.0 was manipulating an internal
697 cache of GC object within cairo's Xlib backend without proper
698 locking. The missing locking could cause failures for multi-threaded
699 applications. He fixed this in 1.6.2 by adding the missing locks.
701 Release 1.6.0 (2008-04-10 Carl Worth <cworth@cworth.org>)
702 =========================================================
703 The cairo community is quite pleased to announce the 1.6.0 release of
704 the cairo graphics library. This is a major update to cairo, with new
705 features and enhanced functionality which maintains compatibility for
706 applications written using cairo 1.4, 1.2, or 1.0. We recommend that
707 anybody using a previous version of cairo upgrade to cairo 1.6.0.
709 The most significant new features in this release are dramatically
710 improved PDF and PostScript[*] output, support for arbitrary X server
711 visuals (including PseudoColor), a new Quartz backend, and and a new
712 "win32 printing" backend. See below for more details on these and
713 other new features.
715 New dependency on external pixman library (Thanks, Søren!)
716 ----------------------------------------------------------
717 As of cairo 1.6, cairo now depends on the pixman library, for which
718 the latest release can be obtained alongside cairo:
720         http://cairographics.org/releases/pixman-0.10.0.tar.gz
722 This library provides all software rendering for cairo, (the
723 implementation of the image backend as well as any image fallbacks
724 required for other backends). This is the same code that was
725 previously included as part of cairo itself, but is now an external
726 library so that it can be shared by both cairo and by the X server,
727 (which is where the code originated).
729 Improved PDF, PostScript, and SVG output (Thanks, Adrian!)
730 ----------------------------------------------------------
731 Users of the cairo-pdf, cairo-ps, and cairo-svg should see a dramatic
732 improvement from cairo 1.2/1.4 to 1.6. With this release there are now
733 almost no operations that will result in unnecessary rasterization in
734 the PDF and PostScript. Rasterized "image fallbacks" are restricted
735 only to minimal portions of the document where something is being
736 drawn with cairo that is beyond the native capabilities of the
737 document, (this is rare for PDF or SVG, but occurs when blending
738 translucent objects for PostScript).
740 This means that the final output will be of higher quality, and will
741 also be much smaller, and therefore will print more quickly. The
742 machinery for doing analysis and minimal fallbacks also benefits the
743 win32-printing surface described below.
745 In addition to doing less rasterization, the PostScript and PDF output
746 also has several other improvements to make the output more efficient
747 and more compatible with specifications.
749 [*] Note: Just before this release, a bug has been reported that the
750 PostScript output from cairo can crash some printers, (so far the
751 following models have been reported as problematic Xerox Workcentre
752 7228 or 7328 and Dell 5100cn). We will implement a workaround as soon
753 as we can learn exactly what in cairo's output these printers object
754 to, (and we could use help from users that have access to misbehaving
755 printers). This bug is being tracked here:
757         Printing some PDFs from evince is crashing our Xerox printer
758         http://bugs.freedesktop.org/show_bug.cgi?id=15348
760 New support for arbitrary X server visuals (Thanks, Keith and Behdad!)
761 ----------------------------------------------------------------------
762 As of cairo 1.6, cairo should now work with an arbitrary TrueColor or
763 8-bit PseudoColor X server visual. Previous versions of cairo did not
764 support these X servers and refused to draw anything. We're pleased to
765 announce that this limitation has been lifted and people stuck with
766 ancient display systems need no longer be stuck with ancient software
767 just because of cairo.
769 New, supported Quartz backend for Mac OS X (Thanks, Brian and Vladimir!)
770 ------------------------------------------------------------------------
771 As of cairo 1.6, the cairo-quartz backend is now marked as "supported"
772 rather than "experimental" as in previous cairo releases. Its API now
773 has guarantees of API stability into future cairo releases, and its
774 output quality is comparable to other backends. There have been
775 significant improvements to cairo-quartz since 1.4. It now uses many
776 fewer image fallbacks, (meaning better performance), and has greatly
777 improved text rendering.
779 New, "win32 printing" backend (Thanks, Adrian and Vladimir!)
780 ------------------------------------------------------------
781 A new win32-printing surface has been added with an interface very
782 similar to the original win32 surface, (both accept an HDC
783 parameter). But this new surface should only be called with a printing
784 DC, and will result in all drawing commands being stored into a
785 meta-surface and emitted after each page is complete. This allows
786 cairo to analyze the contents, (as it does with PDF, PostScript, and
787 SVG backends), and to do minimal image-based fallbacks as
788 necessary. The analysis keeps things as efficient as possible, while
789 the presence of fallbacks, (when necessary), ensure the consistent,
790 high-quality output expected from cairo.
792 Robustness fixes (Thanks, Chris!)
793 ---------------------------------
794 There has been a tremendous number of improvements to cairo's
795 robustness. Areas that have been improved include:
797         * Proper reporting of errors
799         * Responding correctly to invalid input
801         * Avoiding integer overflows
803         * Avoiding memory leaks on error-recovery paths
805         * Making reference counting thread safe
807         * Exhaustive testing of memory allocation points
809 Other fixes (Thanks, everybody!)
810 --------------------------------
811 Cairo's internal fixed-point representation has been changed from
812 16.16 to 24.8. This has a direct impact on applications as it allows
813 much larger objects to be drawn before internal limits in cairo make
814 the drawing not work.
816 The CAIRO_EXTEND_PAD mode is now fully supported by surface
817 patterns. This mode allows applications to use cairo_rectangle and
818 cairo_fill to draw scaled images with high-quality bilinear filtering
819 for the internal of the image, but without any objectionably blurry
820 edges, (as would happen with the default EXTEND_NONE and cairo_paint).
822 Rendering with CAIRO_ANTIALIAS_NONE has been fixed to be more
823 predictable, (previously image rendering and geometry rendering would
824 be slightly misaligned with respect to each other).
826 The reference manual at http://cairographics.org/manual now documents
827 100% of the functions and types in cairo's public API.
829 API additions
830 -------------
831 Several small features have been added to cairo with new API functions:
833 cairo_format_stride_for_width
835     Must be called to compute a properly aligned stride value before
836     calling cairo_image_surface_create_for_data.
838 cairo_has_current_point
840     Allows querying if there is a current point defined for the
841     current path.
843 cairo_path_extents
845     Allows querying for path extents, (independent of any fill or
846     stroke parameters).
848 cairo_surface_copy_page
849 cairo_surface_show_page
851     Allow beginning a new document page without requiring a cairo_t
852     object.
854 cairo_ps_surface_restrict_to_level
855 cairo_ps_get_levels
856 cairo_ps_level_to_string
857 cairo_ps_surface_set_eps
859     Allow controlling the Post PostScript level, (2 or 3), to
860     target, as well as to generate Encapsulated PostScript (EPS).
862 cairo_quartz_font_face_create_for_cgfont
864     Create a quartz-specific cairo_font_face_t from a CGFontRef.
866 cairo_win32_font_face_create_for_logfontw_hfont
868     Create a win32-specific cairo_font_face from a LOGFONTW and an
869     HFONT together.
871 Thanks, Everyone!
872 -----------------
873 I've accounted for 32 distinct people with attributed code added to
874 cairo between 1.4.14 and 1.6.0, (their names are below). That's an
875 impressive number, but there are certainly dozens more that
876 contributed with testing, suggestions, clarifying questions, and
877 encouragement. I'm grateful for the friendships that have developed as
878 we have worked on cairo together. Thanks to everyone for making this
879 all so much fun!
881 Adrian Johnson, Alp Toker, Antoine Azar, Behdad Esfahbod,
882 Benjamin Otte, Bernardo Innocenti, Bertram Felgenhauer,
883 Boying Lu, Brian Ewins, Carl Worth, Chris Heath, Chris Wilson,
884 Claudio Ciccani, Emmanuel Pacaud, Jeff Muizelaar, Jeremy Huddleston,
885 Jim Meyering, Jinghua Luo, Jody Goldberg, Jonathan Gramain,
886 Keith Packard, Ken Herron, Kouhei Sutou, Kristian Høgsberg,
887 Larry Ewing, Martin Ejdestig, Nis Martensen, Peter Weilbacher,
888 Richard Hult, Shailendra Jain, Søren Sandmann Pedersen,
889 Vladimir Vukicevic
891 Snapshot 1.5.20 (2008-04-04 Carl Worth <cworth@cworth.org>)
892 ===========================================================
893 This is the tenth snapshot in cairo's unstable 1.5 series. It comes
894 just two days (and only one working day) after the 1.5.18
895 snapshot. The quick snapshot is due to two embarrassing bugs (both
896 affecting cairo-xlib) that had been introduced in the 1.5.18
897 snapshot. The fixes for these are described below along with a few
898 other fixes, (which hopefully aren't introducing new bugs this time).
900 cairo-xlib
901 ----------
902 Revert fix from 1.5.18 to allow pattern expansion based on the filter
903 mode. This fix seemed so boring, (the use case it addresses is almost
904 never used in practice), that it didn't even get mentioned in the
905 1.5.18 release notes. However, the "fix" happened to break rendering
906 that is always used resulting in corrupt image rendering in mozilla,
907 evolution, and probably everything else that uses cairo.
909 Fix to avoid BadMatch errors in cairo_surface_create_similar. These
910 were introduced, (inadvertently, of course), as part of the fix in
911 1.5.18 for creating similar surfaces without the Render
912 extension. Again, thanks to mozilla, (and Vladimir Vukicevic in
913 particular), for noticing our mistake.
915 general
916 -------
917 Correctly handle an in-error surface in
918 cairo_surface_write_to_png. Previously this function would cause an
919 assertion failure if you gave it a finished surface. Now it cleanly
920 returns a CAIRO_STATUS_SURFACE_FINISHED result instead.
922 Avoid potentially infinite wandering through memory inside
923 _cairo_hull_prev_valid. Thanks to Jonathan Watt for noticing this
924 problem:
926         https://bugzilla.mozilla.org/show_bug.cgi?id=306649#c21
928 cairo-pdf
929 ---------
930 Fix generation of "soft" masks made by drawing to a similar surface
931 and then calling cairo_mask_surface() with it.
933 cairo-svg
934 ---------
935 Fix for code that uses cairo_mask() on an intermediate surface which
936 is later passed to cairo_mask_surface().
938 Snapshot 1.5.18 (2008-04-05 Carl Worth <cworth@cworth.org>)
939 ===========================================================
940 This is the ninth snapshot in cairo's unstable 1.5 series. It comes
941 just 4 days after the 1.5.16 snapshot. We had hoped to not need
942 another snapshot before the final 1.6.0 release, but several critical
943 bugs were found and fixed in the last few days, so we thought it
944 important to let people test the fixes with this snapshot. See below
945 for details.
947 documentation
948 -------------
949 The README now lists necessary dependencies.
951 Various graphics state defaults are now documented, (source pattern is
952 opaque black, line width is 2.0, line join is miter, line cap is butt,
953 miter limit is 10.0, etc.).
955 general
956 -------
957 Several cleanups have been made along many error-path returns,
958 (carefully propagating up the original error status values, cleaning
959 up memory leaks during error recovery, etc.). This is yet another in
960 Chris "ickle" Wilson's long series of error-handling cleanups during
961 the 1.5 series.
963 Avoid undesired clipping when drawing scaled surface patterns with
964 bilinear filtering.
966 cairo-pdf
967 ---------
968 Fix emission of 1-bit alpha masks in PDF output.
970 Fix a bug that would cause glyphs to be misplaced along the Y axis:
972     http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%23474136
974     Originally, an issue about a crash, but later leading to the
975     misplaced glyphs issue being discovered.
977 cairo-ps
978 --------
979 Fix misplaced glyphs in cairo's PostScript output.
981     This issue occurs when consecutive glyphs are placed far
982     apart. This case is exercised by the new ft-show-glyphs-table test
983     case, which was originally inspired by the Debian bug #23474136
984     mentioned above.
986 Fix more misplaced glyphs in cairo's PostScript output:
988     The issue here showed up under very particular circumstance, (when
989     converting a PDF file with a CFF font with CID Identity-H encoding
990     and using glyph 0, (defined by the CFF specification as .notdef)
991     as a space instead). More concretely, this problem appeared when
992     converting the UbuntuDesktop.pdf file mentioned in this bug
993     report:
995         https://bugs.freedesktop.org/show_bug.cgi?id=15348#c3
997     As usual with arcane font-encoding-specific bugs like this, many
998     thanks to Adrian Johnson for his magical ability to dive into
999     specifications and emerge almost instantaneously with fixes. And
1000     thanks to Sebastien Bacher for bringing the bug to our attention.
1002 cairo-xlib
1003 ----------
1004 Fix serious failure on X servers without the Render extension.
1006     Since the 1.5.14 snapshot (with support for PseudoColor visuals),
1007     any application attempting to create a "similar" xlib surface would
1008     fail on an X server without the Render extension. Thanks to
1009     Frederic Crozat for pointing out that cairo's test suite was
1010     entirely failing when run against Xvfb.
1012 Avoid crashing cairo-xlib applications for too-large glyphs
1014     Naively sending glyphs of any size to the X server will eventually
1015     violate the X limit on maximum request sizes. We now properly
1016     detect when a glyph would be too large and use existing fallbacks
1017     to render the glyph rather than trying to send it to the X server.
1019 Enable the buggy_repeat workaround for Xorg servers < 1.4
1021     We have determined that Xorg 1.3.0 (as packaged in Fedora 8 at
1022     least) has a bug that can result in an X server crash when cairo
1023     uses certain X Render repeat operations, (as exercised by cairo's
1024     extend-reflect test). We avoid this crash by using fallbacks
1025     whenever a repeating surface is needed for any Xorg server with a
1026     version less than 1.4. This is slower, but should prevent the
1027     crash.
1029     (Meanwhile, there appears to be a separate bug where some X
1030     servers or specific X-server drivers will use random pixmap data
1031     when asked to draw a repeating surface. The buggy_repeat
1032     workaround would also avoid those problems, but we have not yet
1033     characterized whether the new "version < 1.4" is a good
1034     characterization of those problems or not.)
1036 cairo-quartz-font
1037 -----------------
1038 Implement cairo_font_extents for this backend.
1040 The cairo-quartz-font implementation added in the 1.5.14 snapshot was
1041 entirely missing support for the cairo_font_extents function. Thanks to
1042 Richard Hult for pointing out this obvious shortcoming, (and obvious
1043 lack of coverage in our test suite):
1045         CGFont backend returns 0 font extents
1046         https://bugs.freedesktop.org/show_bug.cgi?id=15319
1048 Snapshot 1.5.16 (2008-04-01 Carl Worth <cworth@cworth.org>)
1049 ===========================================================
1050 This is the eighth snapshot in cairo's unstable 1.5 series. It comes
1051 less than two weeks after the 1.5.14 snapshot and it really is a
1052 legitimate snapshot, (in spite of sharing this date with that of many
1053 bogus announcements). The major change in this snapshot is that the
1054 cairo-quartz backend is now officially "supported", including new API
1055 to construct a font face from a CGFontRef . Also several bug fixes
1056 have been fixed in many backends. See below for details.
1058 general
1059 -------
1060 Cairo now depends on pixman 0.10.0 which was recently released. The
1061 latest pixman release can always be found alongside cairo releases at:
1063    http://cairographics.org/releases
1065 Increase the precision of color stops for gradients. This fixes a
1066 regression in gradient rendering that had been present since the
1067 1.5.12 snapshot.
1069 paginated (all of ps, pdf, svg, and win32-printing)
1070 ---------------------------------------------------
1071 Fix assertion failure when some drawing elements are outside the page
1072 boundaries, (this bug was noticed when using Inkscape to print a
1073 drawing with landscape orientation to a portrait-oriented piece of
1074 paper).
1076 cairo-ps
1077 --------
1078 Fix of bug causing incorrect glyph positioning.
1080 Fix handling of CAIRO_OPERATOR_SOURCE.
1082 cairo-pdf
1083 ---------
1084 More reduction of unnecessary digits of precision in PDF output.
1086 Fix handling of CAIRO_OPERATOR_SOURCE.
1088 cairo-svg
1089 ---------
1090 Fix bug in usage of libpng that was preventing cairo_mask from working
1091 with the svg backend.
1093 Fix transformation of source pattern for cairo_stroke().
1095 cairo-win32-printing
1096 --------------------
1097 Fix fallback resolution, (thanks again to inkscape users/developers
1098 for helping us find this one).
1100 cairo-quartz
1101 ------------
1102 Mark the cairo-quartz backend as "supported" rather than
1103 "experimental". This means the following:
1105     * The backend will now be built by default (if possible).
1107     * We are committing that the backend-specific API (as published in
1108       cairo-quartz.h) are stable and will be supported in all future
1109       cairo 1.x releases.
1111     * We are committing that the output quality of this backend
1112       compares favorably with other cairo backends, (and that quality
1113       is ensured by good results from the cairo test suite).
1115     * We recommend that distributions build and distribute this
1116       backend when possible.
1118 Note that the cairo_quartz_image API (in cairo-quartz-image.h) is
1119 still experimental, will not build by default, (pass
1120 --enable-quartz-image to configure to build it), and may see API
1121 changes before it is marked as "supported" in a future release.
1123 Put the CAIRO_FONT_TYPE_ATSUI name back into
1124 cairo-deprecated.h. Without this, the cairo 1.5.14 snapshot broke all
1125 builds for applications using the C++ cairomm bindings (and perhaps
1126 others) which have the CAIRO_FONT_TYPE_ATSUI name in their header
1127 files. This breakage happened even for applications not using
1128 cairo-quartz at all.
1130     Note: Even though the CAIRO_FONT_TYPE_ATSUI name is provided to
1131     avoid this build breakage, we still recommend that bindings and
1132     applications move to the new, and more accurate,
1133     CAIRO_FONT_TYPE_QUARTZ name.
1135 Replace the implementation of cairo-quartz-font to use CFFont instead
1136 of ATSUI. The CGFont API is a better fit than ATSUI, and this new
1137 implementation is also more correct than the old one as well.
1139 This also adds the following new API call:
1141         cairo_public cairo_font_face_t *
1142         cairo_quartz_font_face_create_for_cgfont (CGFontRef font);
1144 The previous cairo_quartz_font_face_create_for_atsu_font_id function
1145 continues to exist and is part of the supported API going
1146 forward. (However, the old name of that same function, which was
1147 cairo_atsui_font_face_create_for_atsu_font_id is officially
1148 deprecated. Any source code using the old name should be updated to
1149 use the new name.)
1151 Fix transformation of source pattern for cairo_stroke().
1153 cairo-win32
1154 -----------
1155 Avoid crash in create_similar is cairo_win32_surface_create fails.
1157 Snapshot 1.5.14 (2008-03-20 Carl Worth <cworth@cworth.org>)
1158 ===========================================================
1159 This is the seventh snapshot in cairo's unstable 1.5 series. It comes
1160 3 weeks after the 1.5.12 snapshot. This snapshot includes support for
1161 arbitrary X server visuals, (including PseudoColor), which was the
1162 final remaining cairo-specific item on the cairo 1.6 roadmap. It also
1163 includes a huge number of improvements to the cairo-quartz backend. So
1164 this is effectively a cairo 1.6 release candidate. We expect very few
1165 changes from now until 1.6 and only for specific bug fixes.
1167 API Change
1168 ----------
1169 Rename ATSUI font backend to Quartz font backend. This affects the
1170 following usage:
1172         --enable-atsui          -> --enable-quartz-font
1173         CAIRO_HAS_ATSUI_FONT    -> CAIRO_HAS_QUARTZ_FONT
1174         CAIRO_FONT_TYPE_ATSUI   -> CAIRO_FONT_TYPE_QUARTZ
1176         cairo_atsui_font_face_create_for_atsu_font_id ->
1177         cairo_quartz_font_font_create_for_atsu_font_id
1179 This API change is justified by the cairo-quartz backend still be
1180 marked as "experimental" rather than "supported", (though this is one
1181 step toward making the change to "supported" before 1.6). Cairo will
1182 still provide ABI compatibility with the old symbol name, however.
1184 paginated (all of ps, pdf, svg, and win32-printing)
1185 ---------------------------------------------------
1186 Optimize by not analyzing an image surface for transparency more than
1187 once, (previously all images were analyzed twice).
1189 cairo-ps and cairo-pdf
1190 ----------------------
1191 Avoiding emitting a matrix into the stroke output when unnecessary,
1192 (making output size more efficient).
1194 Reduce rounding error of path shapes by factoring large scale factors
1195 out of the path matrix, (ensuring that a fixed-number of printed
1196 digits for path coordinates contains as much information as possible).
1198 Reduce excess digits for text position coordinates. This makes the
1199 output file size much smaller without making the result any less
1200 correct.
1202 cairo-ps
1203 --------
1204 Eliminate bug causing extraneous text repetition on Linux PostScript
1205 output in some cases.
1207         See: Mozilla Bug 419917 – Printed page contents are reflected
1208         inside bordered tables (Linux-only)
1210         https://bugzilla.mozilla.org/show_bug.cgi?id=419917
1212 Optimize output when EXTEND_PAD is used.
1214 cairo-pdf
1215 ---------
1216 Fix to not use fill-stroke operator with transparent fill, (else PDF
1217 output doesn't match the cairo-defined correct result). See:
1219         https://bugs.launchpad.net/inkscape/+bug/202096
1221 cairo-svg
1222 ---------
1223 Fix stroke of path with a non-solid-color source pattern:
1225         http://bugs.freedesktop.org/show_bug.cgi?id=14556
1227 cairo-quartz
1228 ------------
1229 Fix text rendering with gradient or image source pattern.
1231 Handling antialiasing correctly for cairo_stroke(), cairo_clip(), and
1232 cairo_show_text()/cairo_show_glyphs().
1234 Correctly handle gradients with non-identity transformations:
1236         Fixes http://bugs.freedesktop.org/show_bug.cgi?id=14248
1238 Add native implementation of REPEAT and REFLECT extend modes for
1239 gradients.
1241 Fix implementation for the "unbounded" operators, (CAIRO_OPERATOR_OUT,
1242 _IN, _DEST_IN, and _DEST_ATOP).
1244 Correctly handle endiannees in multi-architecture compiles on Mac OS
1247 Avoid behavior which would cause Core Graphics to print warnings to
1248 the console in some cases.
1250 cairo-win32
1251 -----------
1252 Fix handling of miter limit.
1254 cairo-win32-printing
1255 --------------------
1256 Fix to not use a 1bpp temporary surface in some cases while printing,
1257 (so grayscale data is preserved rather than just becoming black and
1258 white).
1260 cairo-xlib
1261 ----------
1262 Add support for rendering to arbitrary TrueColor X server
1263 visuals. This fixes at least the following bugs:
1265         cairo doesn't support 8-bit truecolor visuals
1266         https://bugs.freedesktop.org/show_bug.cgi?id=7735
1268         cairo doesn't support 655 xlib format
1269         https://bugs.freedesktop.org/show_bug.cgi?id=9719
1271 Add support for rendering to 8-bit PseudoColor X server visuals. This
1272 fixes the following bug:
1274         Cairo doesn't support 8-bit pseudocolor visuals
1275         https://bugs.freedesktop.org/show_bug.cgi?id=4945
1277 Snapshot 1.5.12 (2008-02-28 Carl Worth <cworth@cworth.org>)
1278 ===========================================================
1279 This is the sixth snapshot in cairo's unstable 1.5 series. It comes 1
1280 week after the 1.5.10 snapshot. This snapshot includes the
1281 long-awaited change from 16.16 to 24.8 fixed-point values, (see below
1282 for why you should care).  It also includes several backend-specific
1283 bug fixes.
1285 24.8 fixed-point format
1286 -----------------------
1287 Cairo has always converted path coordinates to a fixed-point
1288 representation very early in its processing. Historically, this has
1289 been a 32-bit representation with 16 bits of integer for the
1290 device-pixel grid and 16 bits of sub-pixel positioning. The choice of
1291 16 bits for the integer coordinate space was based on the 16-bit limit
1292 for X Window drawables.
1294 This 16-bit limit has proven problematic for many applications. It's
1295 an especially vexing problem when targeting non-X backends that don't
1296 have any 16-bit restriction. But even when targeting cairo-xlib, it's
1297 often desirable to draw a large shape, (say a background rectangle),
1298 that extends beyond the surface bounds and expect it to fill the
1299 surface completely, (rather than overflowing and triggering random
1300 behavior).
1302 Meanwhile, nobody has ever really needed 16 bits of sub-pixel
1303 precision.
1305 With this snapshot, the fixed-point system is still in place and is
1306 still using a 32-bit representation, (future versions of cairo might
1307 move entirely to floating-point when targeting PDF output for
1308 example). But the representation now provides 24 bits of pixel
1309 addressing and only 8 bits of sub-pixel positioning. This should give
1310 a much less stifling space to many applications.
1312 However, the underlying pixman library still has 16-bit limitations in
1313 many places, (it has its roots in the X server as well). Until those
1314 are also fixed, applications targeting cairo image surfaces, or
1315 hitting software fallbacks when targeting other surfaces will still
1316 encounter problems with device-space values needing more than 16
1317 integer bits.
1319 generic fixes
1320 -------------
1321 Add a few tests to the test suite to increase coverage.
1323 Cleanup a few error-handling paths, (propagate error correctly).
1325 cairo-ft
1326 --------
1327 Fix handling of font sizes smaller than 1 device pixel.
1329 cairo-pdf
1330 ---------
1331 Fix to properly save/restore clip when analyzing meta-surface
1332 patterns, (fixing a couple of test-suite failures).
1334 Implement native support for CAIRO_OPERATOR_SOURCE when the source
1335 pattern is opaque.
1337 Emit rectangles as PDF rectangles ("re" operator) rather than as
1338 general paths.
1340 cairo-ps
1341 --------
1342 Fix to work properly with the 16.16->24.8 change.
1344 cairo-svg
1345 ---------
1346 Fix CAIRO_EXTEND_REFLECT by using an image fallback, (there's no
1347 direct SVG support for reflected patterns).
1349 Fix the use of alpha-only masks, (such as CAIRO_FORMAT_A8).
1351 cairo-quartz
1352 ------------
1353 Add new API for efficiently using image data as a source:
1355         cairo_surface_t *
1356         cairo_quartz_image_surface_create (cairo_surface_t *image_surface);
1358         cairo_surface_t *
1359         cairo_quartz_image_surface_get_image (cairo_surface_t *surface);
1361 For full documentation, see:
1363         http://cairographics.org/manual/cairo-Quartz-Surfaces.html#cairo-quartz-image-surface-create
1365 Several fixes for cairo_mask().
1367 cairo-atsui
1368 -----------
1369 Change default from from Monaco to Helvetica to be more consistent
1370 with other font backends.
1372 Snapshot 1.5.10 (2008-02-20 Carl Worth <cworth@cworth.org>)
1373 ===========================================================
1374 This is the fifth snapshot in cairo's unstable 1.5 series. It comes 3
1375 weeks after the 1.5.8 snapshot. This snapshot adds one new API
1376 function, (cairo_has_current_point), and the usual mix of
1377 improvements, (more efficient PostScript/PDF output, optimized
1378 stroking), and fixes (more robust error-handling, etc.). See below for
1379 details.
1381 New API
1382 -------
1383 Add a new function to query if there is a current point:
1385         cairo_bool_t
1386         cairo_has_current_point (cairo_t *cr);
1388 There is no current point immediately after cairo_create(), nor after
1389 cairo_new_path() or cairo_new_sub_path(). There is a current point
1390 after any of the path-creation functions, (cairo_move_to,
1391 cairo_line_to, cairo_curve_to, etc.).
1393 With this new function, we also revert the change of the return type
1394 of cairo_get_current_point from cairo 1.5.8, (it's now a void function
1395 again).
1397 Optimizations
1398 -------------
1399 Optimize stroking code to avoid repeated calculation of redundant
1400 values, (particularly significant for very large, offscreen paths).
1402 General fixes
1403 -------------
1404 Patch a few more potential buffer overruns, (due to integer
1405 overflow).
1407 Many fixes and improvements to cairo's error-handling, (ensure that
1408 correct error values are returned, clean up memory leaks on
1409 error-handling paths, etc.).
1411 Fix a potential infinite loop when stroking a spline with a pen that
1412 has been transformed to a line segment.
1414 Remove treating NULL as a synonym for a valid cairo_font_options_t*
1415 with default values, (a change that had been introduced as of cairo
1416 1.5.8).
1418 Remove the altered handling of tolerance and fallback-resolution that
1419 had been introduced as of cairo 1.5.4.
1421 cairo-xlib
1422 ----------
1423 Pass the original Drawable, (as opposed to the root window), to
1424 XCreatePixmap when creating a similar surface. This gives the X server
1425 more information so that it can be clever and efficient.
1427 cairo-pdf
1428 ---------
1429 Fix the rendering of repeating and reflecting patterns.
1431 Ensure miter limit is always >= 1, (smaller limits are not meaningful,
1432 but they can cause some PDF viewers to fail to display pages).
1434 Generate more efficient output when the same path is used for both
1435 fill and stroke.
1437 cairo-ps
1438 --------
1439 Start sharing much of the cairo-pdf code rather than implementing very
1440 similar code in cairo-ps.
1442 Implement native support for repeating and reflecting linear
1443 gradients.
1445 Implement reflected surface patterns.
1447 Ensure miter limit is always >= 1, (smaller limits are not meaningful,
1448 but they can cause some PostScript viewers to crash).
1450 Generate PostScript that will perform more efficiently and use less
1451 memory on printers, (use currentfile instead of a giant string array
1452 for image data, and avoid using PostScript patterns for paint() and
1453 fill() when possible).
1455 cairo-svg
1456 ---------
1457 Avoid unnecessary rasterization when copying a "similar" surface to
1458 another svg surface, (allow the SOURCE operator to be implemented with
1459 all-vector operations if there are no underlying objects).
1461 cairo-atsui
1462 -----------
1463 Eliminate infinite loop when attempting to render an empty string.
1465 Snapshot 1.5.8 (2008-01-30 Carl Worth <cworth@cworth.org>)
1466 ==========================================================
1467 This is the fourth snapshot in cairo's unstable 1.5 series. It comes 2
1468 weeks after the 1.5.6 snapshot. It adds a few new API functions. Most
1469 notably all callers of cairo_image_surface_create_for_data should now
1470 be calling cairo_format_stride_for_width to compute a legal stride
1471 value. See below for more details.
1473 New API in cairo 1.5.8
1474 ----------------------
1475 We've added a new function that should be called to compute a legal
1476 stride value before allocating data to be used with
1477 cairo_image_surface_create_for_data:
1479         int
1480         cairo_format_stride_for_width (cairo_format_t   format,
1481                                        int              width);
1483 We've also added a new cairo_path_extents function that can be used to
1484 compute a bounding box for geometry such as a single line segment,
1485 (contrast with cairo_path_extents and cairo_stroke_extents):
1487         void
1488         cairo_path_extents (cairo_t *cr,
1489                             double *x1, double *y1,
1490                             double *x2, double *y2);
1492 And finally, we've added a function to allow for querying the
1493 XRenderPictFormat of a cairo-xlib surface:
1495         XRenderPictFormat *
1496         cairo_xlib_surface_get_xrender_format (cairo_surface_t *surface);
1498 API changes
1499 -----------
1500 Fix return types of cairo_surface_show_page and
1501 cairo_surface_copy_page. This is an API change to functions that are
1502 new in the 1.5 series, so not an API break compared to any stable
1503 cairo release, (1.0.x, 1.2.x, 1.4.x).
1505 Change the return type of cairo_get_current_point() from void to
1506 cairo_status_t. This allows the caller to receive a
1507 CAIRO_STATUS_NO_CURRENT_POINT value to distinguish the a current point
1508 at the origin from no current point existing.
1510 Performance improvement
1511 -----------------------
1512 Improve performance of clipping by using an optimized code path
1513 internally, (with the ADD operator instead of IN).
1515 General bug fixes
1516 -----------------
1517 Fix various cairo_*_extents functions to initialize the return-value
1518 variables even in the case of a cairo_t in error.
1520 Treat NULL as a legitimate value for cairo_font_options_t*. [NOTE:
1521 On discussion afterwards, we decided against this change so it has
1522 been removed as of cairo 1.5.10.]
1524 Fix rendering with CAIRO_ANTIALIAS_NONE to be more predictable, (that
1525 is, to avoid seams appearing when geometry and imagery share an
1526 identical edge). Portions of this fix are in the pixman library and
1527 will appear in a future release of that library.
1529 Avoid triggering an error for a font size of 0.
1531 Miscellaneous changes
1532 ---------------------
1533 Require pixman >= 0.9.6.
1535 There has been a tremendous amount improvement to cairo's
1536 documentation. We're delighted that 100% of the public API has at
1537 least some documentation in the API reference manual. Many thanks to
1538 Behdad Esfahbod and Nis Martensen for leading this effort.
1540 cairo-pdf and cairo-ps
1541 ----------------------
1542 Eliminate failure when a Type 1 font is embedded with an explicit
1543 glyph 0.
1545 cairo-pdf
1546 ---------
1547 Implement a more correct and more efficient approach for patterns with
1548 an extend mode of CAIRO_EXTEND_REFLECT.
1550 cairo-ps
1551 --------
1552 Fix image masks to properly pack and pad mask bits.
1554 cairo-quartz
1555 ------------
1556 Take care to only use DrawTiledImage for integer-aligned images, (and
1557 use slower paths to get the correct result in other cases).
1559 cairo-win32
1560 -----------
1561 Fix for older versions of mingw.
1563 Improve the handling of the clipping with the win32 and win32-printing
1564 surfaces.
1566 Fix rendering of non black/white text.
1568 Snapshot 1.5.6 (2008-01-15 Carl Worth <cworth@cworth.org>)
1569 ==========================================================
1570 This is the third snapshot in cairo's unstable 1.5 series. It comes
1571 about 6 weeks after the 1.5.4 snapshot. The only API addition compared
1572 to 1.5.4 is very minor, (a new value CAIRO_STATUS_TEMP_FILE_ERROR).
1573 The remainder of the changes are the usual accumulation of bug fixes
1574 and improvements. See below for details.
1576 General bug fixes
1577 -----------------
1578 Fix handling of fonts that contain a mixture of outline and bitmapped
1579 glyphs. There was a change in this handling in 1.5.4 that improved
1580 some cases and also regressed other cases. Now, all cases should be
1581 handled quite well.
1583 Fix alignment issues that were causing SIGBUS failures on SPARC.
1585 Fix a regression (which first appeared in 1.5.2) where stroking under
1586 a large scale would sometimes incorrectly replace a miter join with a
1587 bevel join. (Thanks to Keith Packard.)
1589 Fix reporting of zero-sized extents to be {0,0} rather than
1590 {INT_MAX,INT_MIN}. This avoids several integer overflow and
1591 allocations of massive regions in some cases.
1593 Fix failures of gradients with no stops, (quartz, ps, and pdf).
1595 Fix handling of Type 1 fonts on Windows platforms.
1597 Fix handling of Type 1 fonts with no specific family name in the font
1598 itself, (generate a CairoFont-x-y name).
1600 Handle NULL string values in cairo_show_text, cairo_show_glyphs, and
1601 friends.
1603 Many robustness improvements along error-handling paths, (thanks as
1604 always, to Chris "ickle" Wilson).
1606 Various other minor fixes.
1608 Paginated backends (PDF/PostScript/win32-printing)
1609 --------------------------------------------------
1610 Avoid unnecessary rasterization when using a paginated surface as a
1611 source, (such as drawing from one pdf surface to another).
1613 Fix replaying of paginated surface with more than one level of push/pop
1614 group.
1616 cairo-xlib
1617 ----------
1618 Fix xlib backend to not consider recent X server release as having a
1619 buggy repeat implementation in the Render extension.
1621 cairo-pdf
1622 ---------
1623 Fix PDF output to avoid triggering very slow rendering in PDF viewers,
1624 (avoid starting and stopping the content stream for each pattern
1625 emission).
1627 Support CAIRO_OPERATOR_SOURCE in cases where there is nothing below
1628 the object being drawn.
1630 Fix to avoid seams appearing between multiple fallback regions.
1632 cairo-ps (PostScript)
1633 ---------------------
1634 Use correct bounding box in Type 3 fonts.
1636 Fix several bugs in cairo's PostScript output. These include making
1637 the PostScript output more compatible with recent versions of
1638 ghostscript that are more strict about Type 3 fonts, for
1639 example.
1641 Fix for win32 to not attempt to create temporary files in the root
1642 directory, (where the user may not have write permission).
1644 Avoid generating Level 3 PostScript if Level 2 is sufficient. Also,
1645 add code in output documents to alert the user if Level 3 PostScript
1646 is handed to a device that cannot handle PostScript beyond Level
1649 cairo-directfb
1650 --------------
1651 Various performance optimizations.
1653 Fixed support for small surfaces (less than 8x8).
1655 Provide support for environment variables CAIRO_DIRECTFB_NO_ACCEL to
1656 disable acceleration and CAIRO_DIRECTFB_ARGB_FONT to enable ARGB fonts
1657 instead of A8.
1659 cairo-os2
1660 ---------
1661 Allow OS/2 APIs instead of C library allocation functions.
1663 Snapshot 1.5.4 (2007-12-05 Carl Worth <cworth@cworth.org>)
1664 ==========================================================
1665 This is the second snapshot in cairo's unstable 1.5 series. It comes
1666 just over 1 month after the 1.5.2 snapshot. There are no API changes
1667 or additions in 1.5.4 compared to 1.5.2, but there are several bug
1668 fixes, and some optimizations. Most of these apply to particular
1669 backends. See below for details.
1671 General improvements
1672 --------------------
1673 Use less memory for spline approximation calculations.
1675 Change how the tolerance value is interpreted with regard to
1676 fallback-resolution. [Note: On further discussion, we decided against
1677 this change for now. It is removed as of cairo 1.5.10.]
1679 Fix precision of floating-point values in vector-output backends to
1680 avoid rounding errors with very small numbers.
1682 Xlib improvements
1683 -----------------
1684 Fix bug in glyph rendering with xlib, (due to everything being clipped
1685 out). This was a regression in the 1.5.2 snapshot that was visible in
1686 the GIMP, for example. See:
1688         cairo 1.5.2 causes font problems in GIMP 2.4 status bar and evolution 2.12.1
1689         https://bugs.freedesktop.org/show_bug.cgi?id=13084
1691 PostScript improvements
1692 -----------------------
1693 Fix bug leading to invalid PostScript files when rendering
1694 text, (need "0 0 xyshow" instead of "0 xyshow").
1696 Fix many issues with Type 3 fonts, including making the resulting text
1697 extractable.
1699 Quartz improvements
1700 -------------------
1701 Fix font metrics height value for ATSUI, (helps webkit on GTK+ OS X
1702 layout nicely).
1704 Fix gradients.
1706 Fix EXTEND_NONE mode for patterns.
1708 Fix cairo_quartz_surface_create to properly clear the new surface
1709 in cairo_quartz_surface_create.
1711 Fix to correctly handle 0x0 sized surfaces.
1713 Optimize drawing of EXTEND_REPEAT patterns for OS X 10.5.
1715 Snapshot 1.5.2 (2007-10-30 Carl Worth <cworth@cworth.org>)
1716 ==========================================================
1717 This is the first snapshot in cairo's unstable 1.5 series. It comes 4
1718 months after the 1.4.10 release. This snapshot includes significant
1719 improvements to PDF and PostScript output, which is one of the things
1720 in which we're most interested in getting feedback. There are a couple
1721 of minor API additions, and several optimizations, (primarily in the
1722 "print/vector" backends). And there are dozens of bug fixes and
1723 robustness improvements.
1725 New dependency on external pixman library
1726 -----------------------------------------
1727 A significant change in this snapshot compared to all previous cairo
1728 releases is that cairo now depends on an external "pixman" library for
1729 its software rendering. Previously this same code was compiled
1730 internally as part of cairo, but now the code is separate so that both
1731 cairo and the X server can now share common code, (thanks very much to
1732 Søren Sandmann for his work on separating pixman and maintaining it).
1734 So users will need to acquire and build pixman before being able to
1735 build cairo. The current release is 0.9.6 and can be obtained from
1736 here:
1738         http://cairographics.org/releases/pixman-0.9.6.tar.gz
1740  which can be verified with:
1742         http://cairographics.org/releases/pixman-0.9.6.tar.gz.sha1
1743         66f01a682c64403a3d7a855ba5aa609ed93bcb9e  pixman-0.9.6.tar.gz
1745         http://cairographics.org/releases/pixman-0.9.6.tar.gz.sha1.asc
1746         (signed by Carl Worth)
1748 Major PDF/PostScript improvements
1749 ---------------------------------
1750 Adrian Johnson has done some long-awaited work to make cairo's PDF and
1751 PostScript output more interesting than ever before. First, many
1752 operations that previously triggered image fallbacks will now be
1753 rendered as native vectors. These operations include:
1755         PDF: cairo_push_group, cairo_surface_create_similar,
1756         cairo_mask, A8/A1 surface sources, repeating/reflecting linear
1757         gradients.
1759         PostScript: cairo_push_group, cairo_surface_create_similar,
1760         gradients, bilevel alpha masks, (for example, all values either 0 or
1761         255 for an A8 mask).
1763 Not only that, but when an image fallback is required, it will now be
1764 limited to only the necessary region. For example, a tiny translucent
1765 image overlaying a small portion of text would previously caused an
1766 entire PostScript page to be rendered as a giant image. Now, the
1767 majority of that page will be nice text, and there will only be a tiny
1768 image in the output.
1770 Additionally, the PostScript output now carefully encodes text so that
1771 if it is subsequently converted to PDF, the text will be
1772 selectable.
1774 This is very exciting progress, and we're hoping to hear from users
1775 during the 1.5 series about how things have improved, (for example,
1776 inkscape users doing cairo-based PDF export: please let us know how
1777 things look). And feel free to pass your thanks along to Adrian for his excellent work.
1779 NOTE: This much improved PDF output makes more sophisticated use of
1780 functionality in the PDF specification. This means that cairo's output
1781 will sometimes expose bugs in some free software PDF viewers, (evince,
1782 poppler, and xpdf, for example), that are not yet ready for such PDF
1783 files. We're working with the poppler maintainers to get these bugs
1784 fixed as quickly as possible. In the meantime, please double-check
1785 with other PDF viewers if cairo-generated PDF files are not being
1786 rendered correctly. It may be due to a bug in the viewer rather than
1787 in the PDF file that cairo has created.
1789 Robustness improvements
1790 -----------------------
1791 Chris Wilson has made the largest contribution by far to cairo 1.5.2,
1792 (in number of commits). His more than 150 commits include a huge
1793 number of fixes to increase cairo's robustness. These fixes make cairo
1794 more robust against invalid and degenerate input, (NaN, empty path,
1795 etc.), against size-0 malloc calls, against memory leaks on
1796 error-recovery paths, and against other failures during error
1797 handling. He also implemented atomic operations to cairo, and used
1798 them to fix cairo's previously non-thread-safe reference counting,
1799 again improving robustness.
1801 Chris has put a tremendous amount of time and effort into writing
1802 analysis tools for this work, and in running those tools and fixing
1803 the problems they report. We're very grateful for this work, and hope
1804 that all cairo users appreciate the more robust implementation that
1805 results from it.
1807 This work is largely thankless, so it might make sense to notice
1808 sometime that cairo has been running quite smoothly for you, and when
1809 you do, send a quick "thank you" off to Chris Wilson, since it
1810 is all definitely running smoother thanks to his work.
1812 New API
1813 -------
1814 There are no major additions to cairo's core API. The only new,
1815 generic functions are:
1817         void
1818         cairo_surface_copy_page (cairo_surface_t *surface);
1820         void
1821         cairo_surface_show_page (cairo_surface_t *surface);
1823 which can now be used much more conveniently than the existing
1824 cairo_copy_page and cairo_show_page functions in some
1825 situations. These functions act identically, but require only a
1826 cairo_surface_t* and not a cairo_t*.
1828 All other API additions are specific to particular backends.
1830 New cairo-win32 API (new font face function and "win32 printing" surface)
1831 -------------------------------------------------------------------------
1832 There is a new function for creating a win32 font face for both a
1833 logfontw and an hfont together. This complements the existing
1834 functions for creating a font face from one or the other:
1836         cairo_font_face_t *
1837         cairo_win32_font_face_create_for_logfontw_hfont (LOGFONTW *logfont,
1838                                                          HFONT font);
1840 There is also a new "win32 printing" surface:
1842         cairo_surface_t *
1843         cairo_win32_printing_surface_create (HDC hdc);
1845 This interface looks identical to the original
1846 cairo_win32_surface_create, (both accept and HDC), but the behavior of
1847 this new surface is very different. It should only be called with a
1848 printing DC, and will result in all drawing commands being stored into
1849 a meta-surface and emitted after each page is complete, with analysis
1850 to do as minimal image-based fallbacks as necessary. The behavior and
1851 implementation shares much with the PDF and PostScript backends.
1853 New cairo-ps API (EPS and PostScript level control)
1854 ---------------------------------------------------
1855 An often requested feature has been the ability to generate
1856 Encapsulated PostScript (EPS) with cairo. We have that now with the
1857 following very simple API. Just do cairo_ps_surface_create as usual
1858 then call this function with a true value:
1860         void
1861         cairo_ps_surface_set_eps (cairo_surface_t       *surface,
1862                                   cairo_bool_t           eps);
1864 [NOTE: As always with snapshots, it's possible---though not very
1865 likely---that the API could still be modified before a final
1866 release. For example, this is the first public cairo function that
1867 accepts a Boolean parameter. I'm generally opposed to Boolean
1868 parameters, but this is probably the one case where I'm willing to
1869 accept one, (namely a "set" function that accepts a single Boolean).]
1871 Also, it is now possible to control what PostScript level to target,
1872 (either level 2 or level 3), with the following new API:
1874         typedef enum _cairo_ps_level {
1875             CAIRO_PS_LEVEL_2,
1876             CAIRO_PS_LEVEL_3
1877         } cairo_ps_level_t;
1879         void
1880         cairo_ps_surface_restrict_to_level (cairo_surface_t    *surface,
1881                                             cairo_ps_level_t    level);
1883         void
1884         cairo_ps_get_levels (cairo_ps_level_t const  **levels,
1885                              int                      *num_levels);
1887         const char *
1888         cairo_ps_level_to_string (cairo_ps_level_t level);
1890 Improvement for cairo-quartz
1891 ----------------------------
1892 Brian Ewins had contributed several improvements to cairo-quartz. These
1893 include an implementation of EXTEND_NONE for linear and radial
1894 gradients, (so this extend mode will no longer trigger image fallbacks
1895 for these gradients), as well as native surface-mask clipping, (only
1896 on OS X 10.4+ where the CGContextClipToMask function is available).
1898 He also fixed a semantic mismatch between cairo and quartz for dashing
1899 with an odd number of entries in the dash array.
1901 We're grateful for Brian since not many quartz-specific improvements
1902 to cairo would be happening without him.
1904 Optimizations
1905 -------------
1906 Optimize SVG output for when the same path is both filled and stroked,
1907 and avoid unnecessary identity matrix in SVG output. (Emmanuel Pacaud).
1909 Optimize PS output to take less space (Ken Herron).
1911 Make PS output more compliant with DSC recommendations (avoid initclip
1912 and copy_page) (Adrian Johnson).
1914 Make PDF output more compact (Adrian Johnson).
1916 Release glyph surfaces after uploading them to the X server, (should
1917 save some memory for many xlib-using cairo application). (Behdad
1918 Esfahbod).
1920 Optimize cairo-win32 to use fewer GDI objects (Vladimir Vukicevic).
1922 win32-printing: Avoid falling back to images when alpha == 255
1923 everywhere. (Adrian Johnson).
1925 win32-printing: Avoid falling back for cairo_push_group and
1926 cairo_surface_create_similar. (Adrian Johnson)
1928 Bug fixes
1929 ---------
1930 Avoid potential integer overflows when allocating large buffers
1931 (Vladimir Vukicevic).
1933 Preparations to allow the 16.16 fixed-point format to change to
1934 24.8 (Vladimir Vukicevic).
1936 Fix bugs for unsupported X server visuals (rgb565, rgb555, bgr888, and
1937 abgr8888). (Carl Worth and Vladimir Vukicevic)
1939 Fix bugs in PDF gradients (Adrian Johnson).
1941 Fix cairo-xlib to build without requiring Xrender header
1942 files (Behdad Esfahbod).
1944 Make cairo more resilient in the case of glyphs not being available in
1945 the current font. (Behdad Esfahbod)
1947 Prevent crashes when both atsui and ft font backends are compiled in
1948 (Brian Ewins).
1950 Make font subsetting code more robust against fonts that don't include
1951 optional tables (Adrian Johnson).
1953 Fix CFF subsetting bug, (which manifested by generating PDF files that
1954 Apple's Preview viewer could not read) (Adrian Johnson).
1956 Fixed error handling for quartz and ATSUI backends (Brian Ewins).
1958 Avoid rounding problems by pre-transforming to avoid integer-only
1959 restrictions on transformation in GDI (Adrian Johnson).
1961 Fixed an obscure bug (#7245) computing extents for some stroked
1962 paths (Carl Worth).
1964 Fix crashes due to extreme transformation of the pen, (seems to show
1965 up in many .swf files for some reason) (Carl Worth).
1967 Release 1.4.10 (2007-06-27 Carl Worth <cworth@cworth.org>)
1968 ==========================================================
1969 This is the fifth update in cairo's stable 1.4 series. It comes
1970 roughly three weeks after the 1.4.8 release. The most significant
1971 change in this release is a fix to avoid an X error in certain cases,
1972 (that were causing OpenOffice.org to crash in Fedora). There is also a
1973 semantic change to include child window contents when using an xlib
1974 surface as a source, an optimization when drawing many rectangles, and
1975 several minor fixes.
1977 Eliminate X errors that were killing OO.o (Chris Wilson)
1978 --------------------------------------------------------
1979 Cairo is fixed to avoid the X errors propagated when cleaning up
1980 Render Pictures after the application had already destroyed the
1981 Drawable they reference. (It would be nice if the X server wouldn't
1982 complain that some cleanup work is already done, but there you have
1983 it.) This fixes the bug causing OpenOffice.org to crash as described
1984 here:
1986         XError on right click menus in OOo.
1987         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=243811
1989 Use IncludeInferiors when using xlib surface as a source (Ryan Lortie)
1990 ----------------------------------------------------------------------
1991 When an xlib surface is used as the source of a draw operation the
1992 contents of child windows are now included in the source data. The
1993 semantics of drawing to xlib surfaces are unchanged (ie: draws are
1994 still clipped by child windows overlapping the destination window).
1996 Optimize drawing of many rectangles (Vladimir Vukicevic)
1997 --------------------------------------------------------
1998 Avoid O(N*N) loop when filling many axis-aligned rectangles, (either
1999 many rectangles as separate sub-paths or due to dashing).
2001 Miscellaneous fixes
2002 -------------------
2003 Fix cairo-perf on Solaris by linking to librt. (Behdad Esfahbod)
2005 Fix make check for systems that require executable files to have a
2006 particular extension. (Behdad Esfahbod)
2008 Eliminate some warnings in cairo-quartz. (Brian Ewins)
2010 Fix build-breaking typo for cairo-directfb. (Chris Wilson)
2012 Release 1.4.8 (2007-06-07 Carl Worth <cworth@cworth.org>)
2013 =========================================================
2014 This is the fourth update in cairo's stable 1.4 series. It comes just
2015 over five weeks after the 1.4.6 release. This release includes a
2016 thread-safe surface-cache for solid patterns which significantly
2017 improves text rendering with the xlib backend. Also, dozens of error
2018 paths in cairo have been fixed thanks to extensive fault-injection
2019 testing by Chris Wilson.
2021 Surface cache for solid patterns
2022 --------------------------------
2023 Originally written by Jorn Baayen, the introduction of a small cache
2024 for surfaces created for solid patterns improves performance
2025 dramatically. For example, this reduces the volume of X requests
2026 during text rendering to the same level as Xft.
2028 This cache first made its appearance in a 1.3.x snapshot, but was
2029 removed before appearing in any previous major release due to
2030 complications with multi-threaded programs. For example, programs like
2031 evince that would carefully restrict usage of cairo-xlib to a single
2032 thread were unpleasantly surprised to find that using cairo-image in a
2033 separate thread could trigger X requests.
2035 Behdad Esfahbod designed a fix which was implemented by Chris
2036 Wilson. Now, the necessary X requests are queued up until the next
2037 time the application directly operates on an xlib surface.
2039 Improved error handling paths
2040 ------------------------------
2041 Chris Wilson continued the excellent work he started in cairo 1.4.4 to
2042 make cairo much more robust against out-of-memory and other errors. He
2043 applied his memory allocation fault injection cairo's main test suite,
2044 (previously he had applied it to cairo's performance suite).
2046 Chris's testing found dozens of bugs which he fixed. Many of these
2047 bugs had perhaps never been hit by any users. But at least one was
2048 hit by the gnome-about program which resulted in dozens of duplicated
2049 bug reports against that program:
2051         http://bugzilla.gnome.org/show_bug.cgi?id=431990
2053 We were very pleasantly surprised to see this bug get fixed as a
2054 side-effect of Chris's work. Well done, Chris!
2056 Other fixes
2057 -----------
2058 Cleanup of mutex declarations (Behdad Esfahbod)
2060 Remove unnecessary clip region from SVG output (Emmanuel Pacaud)
2062 Remove Xsun from the buggy_repeat blacklist (Elaine Xiong)
2064 ATSUI: Fix glyph measurement: faster and more correct (Brian Ewins)
2066 Quartz: fixed 'extend' behaviour for patterns, improved pattern performance,
2067 and a few smaller correctness fixes. (Brian Ewins, Vladimir Vukicevic)
2069 Release 1.4.6 (2007-05-01 Carl Worth <cworth@cworth.org>)
2070 =========================================================
2071 This is the third update in cairo's stable 1.4 series. It comes a
2072 little less than three weeks since the 1.4.4 release. This release
2073 fixes the broken mutex initialization that made cairo 1.4.4 unusable
2074 on win32, OS/2, and BeOS systems. This release also adds significant
2075 improvements to cairo's PDF backend, (native gradients!), and a couple
2076 of performance optimizations, (one of which is very significant for
2077 users of the xlib backend). See below for more details.
2079 Repaired mutex initialization
2080 -----------------------------
2081 We apologize that cairo 1.4.4 did little more than crash on many
2082 platforms which are less-frequently used by the most regular cairo
2083 maintainers, (win32, OS/2, and BeOS). The mutex initialization
2084 problems that caused those crashes should be fixed now. And to avoid
2085 similar problems in the future, we've now started posting pre-release
2086 snapshots to get better testing, (subscribe to cairo@cairographics.org
2087 if you're interested in getting notified of those and testing them).
2089 PDF Improvements
2090 ----------------
2091 Thanks to Adrian Johnson, (cairo PDF hacker extraordinaire), we have
2092 several improvements to cairo's PDF backend to announce:
2094 Native gradients:
2096   As of cairo 1.4.6, cairo will now generate native PDF gradients in
2097   many cases, (previously, the presence of a gradient on any page
2098   would force rasterized output for that page). Currently, only
2099   gradients with extend types of PAD (the default) or NONE will
2100   generate native PDF gradients---others will still trigger
2101   rasterization, (but look for support for other extend modes in a
2102   future release). Many thanks to Miklós Erdélyi as well, who did the
2103   initial work for this support.
2105 Better compatibility with PDF viewers:
2107   The PDF output from cairo should now be displayed correctly by a
2108   wider range of PDF viewers. Adrian tested cairo's PDF output against
2109   many PDF viewers, identified a common bug in many of those viewers
2110   (ignoring the CTM matrix in some cases), and modified cairo's output
2111   to avoid triggering that bugs (pre-transforming coordinates and
2112   using an identity matrix).
2114 Better OpenType/CFF subsetting:
2116   Cairo will now embed CFF and TrueType fonts as CID fonts.
2118 Performance optimizations
2119 -------------------------
2120 Faster cairo_paint_with_alpha:
2122   The cairo_paint_with_alpha call is used to apply a uniform alpha
2123   mask to a pattern. For example, it can be used to gradually fade an
2124   image out or in. Jeff Muizelaar fixed some missing/broken
2125   optimizations within the implementation of this function resulting
2126   in cairo_paint_with_alpha being up to 4 times faster when using
2127   cairo's image backend.
2129 Optimize rendering of "off-screen" geometry:
2131   Something that applications often do is to ask cairo to render
2132   things that are either partially or wholly outside the current clip
2133   region. Since 1.4.0 the image backend has been fixed to not waste
2134   too much time in this case. But other backends have still been
2135   suffering.
2137   In particular, the xlib backend has often performed quite badly in
2138   this situation. This is due to a bug in the implementation of
2139   trapezoid rasterization in many X servers.
2141   Now, in cairo 1.4.6 there is a higher-level fix for this
2142   situation. Cairo now eliminates or clips trapezoids that are wholly
2143   or partially outside the clip region before handing the trapezoids
2144   to the backend. This means that the X server's performance bug is
2145   avoided in almost all cases.
2147   The net result is that doing an extreme zoom-in of vector-based
2148   objects drawn with cairo might have previously brought the X server
2149   to its knees as it allocated buffers large enough to fit all of the
2150   geometry, (whether visible or not). But now the memory usage should
2151   be bounded and performance should be dramatically better.
2153 Miscellaneous
2154 -------------
2155 Behdad contributed an impressively long series of changes that
2156 organizes cairo's internals in several ways that will be very
2157 beneficial to cairo developers. Thanks, Behdad!
2159 Behdad has also provided a utility for generating malloc statistics,
2160 (which was used during the great malloc purges of 1.4.2 and
2161 1.4.4). This utility isn't specific to cairo so may be of benefit to
2162 others. It is found in cairo/util/malloc-stats.c and here are Behdad's
2163 notes on using it:
2165     To build, do:
2167         make malloc-stats.so
2169     inside util/, and to use, run:
2171         LD_PRELOAD=malloc-stats.so some-program
2173     For binaries managed by libtool, eg, cairo-perf, do:
2175         ../libtool --mode=execute /bin/true ./cairo-perf
2176         LD_PRELOAD="../util/malloc-stats.so" .libs/lt-cairo-perf
2178 Finally, the cairo-perf-diff-files utility was enhanced to allow for
2179 generating performance reports from several runs of the same backend
2180 while some system variables were changed. For example, this is now
2181 being used to allow cairo-perf to measure the performance of various
2182 different acceleration architectures and configuration options of the
2183 X.org X server.
2185 Release 1.4.4 (2007-04-13 Carl Worth <cworth@cworth.org>)
2186 =========================================================
2187 This is the second update release in cairo's stable 1.4 series. It
2188 comes just less than a month after 1.4.2. The changes since 1.4.2
2189 consist primarily of bug fixes, but also include at least one
2190 optimization. See below for details.
2192 Of all the work that went into the 1.4.4 release
2194 There have been lots of individuals doing lots of great work on cairo,
2195 but two efforts during the 1.4.4 series deserve particular mention:
2197 Internal cleanup of error handling, (Chris Wilson)
2198 --------------------------------------------------
2199 Chris contributed a tremendous series of patches (74 patches!) to
2200 improve cairo's handling of out-of-memory and other errors. He began
2201 by adding gcc's warn_unused_attribute to as many functions as
2202 possible, and then launched into the ambitious efforts of adding
2203 correct code to quiet the dozens of resulting warnings.
2205 Chris also wrote a custom valgrind skin to systematically inject
2206 malloc failures into cairo, and did all the work necessary to verify
2207 that cairo's performance test suite runs to completion without
2208 crashing.
2210 The end result is a much more robust implementation. Previously, many
2211 error conditions would have gone unnoticed and would have led to
2212 assertion failures, segmentation faults, or other harder-to-diagnose
2213 problems. Now, more than ever, cairo should cleanly let the user know
2214 of problems through cairo_status and other similar status
2215 functions. Well done, Chris!
2217 More malloc reduction, (Mathias Hasselmann)
2218 -------------------------------------------
2219 After 1.4.0, Behdad launched an effort to chase down excessive calls
2220 to malloc within the implementation of cairo. He fixed a lot of
2221 malloc-happy objects for 1.4.2, but one of the worst offenders,
2222 (pixman regions), was left around. Mathias contributed an excellent
2223 series of 15 patches to finish off this effort.
2225 The end result is a cairo that calls malloc much less often than it
2226 did before. Compared to 1.4.2, 55% of the calls to malloc have been
2227 eliminate, (and 60% have been eliminated compared to 1.4.0). Well
2228 done, Mathias!
2230 Other improvements since 1.4.2
2231 ------------------------------
2232 • Centralize mutex declarations (will reduce future build breaks),
2233   (Mathias Hasselmann)
2235 • Reduce malloc by caching recently freed pattern objects (Chris
2236   Wilson)
2238 • Fix some broken composite operations (David Reveman)
2239         https://bugs.freedesktop.org/show_bug.cgi?id=5777
2241 Backend-specific fixes
2242 ----------------------
2243 PDF:
2244  • Use TJ operator for more compact representation of glyphs (Adrian
2245    Johnson)
2247  • Fix glyph positioning bug when glyphs are not horizontal
2248         http://lists.freedesktop.org/archives/cairo/2007-April/010337.html
2250 win32:
2251  • Fix crash when rendering with bitmap fonts (Carl Worth)
2252         https://bugzilla.mozilla.org/show_bug.cgi?id=376498
2254 xlib:
2255  • Turn metrics-hinting on by default (Behdad Esfahbod)
2257  • Fix edge-effect problem with transformed images drawn to xlib
2258    (Behdad Esfahbod)
2259         https://bugs.freedesktop.org/show_bug.cgi?id=10508
2261  • Avoid dereferencing a NULL screen. (Chris Wilson)
2262         https://bugs.freedesktop.org/show_bug.cgi?id=10517
2264 Quartz/ATSUI:
2265  • Fix scaling of glyph surfaces
2266    (Brian Ewins)
2267         https://bugs.freedesktop.org/show_bug.cgi?id=9568
2269  • Fix compilation failure when both xlib and quartz enabled
2270    (Brian Ewins)
2272  • Fix rounding bug leading to incorrectly positioned glyphs
2273    (Robert O'Callahan)
2274         https://bugs.freedesktop.org/show_bug.cgi?id=10531
2276 Release 1.4.2 (2007-03-19 Carl Worth <cworth@cworth.org>)
2277 =========================================================
2278 This is the first update release in cairo's stable 1.4 series. It
2279 comes just less than 2 weeks after 1.4.0. We hadn't anticipated an
2280 update this early, but we've managed to collect some important fixes
2281 that we wanted to get out to cairo users as soon as possible, (6 fixes
2282 for crashes, 1 case where graphical elements would not be drawn at
2283 all, a handful of backend-specific bugs, and several important build
2284 fixes).
2286 There's almost nothing but bug fixes in this release, (see below one
2287 optimization that Behdad did sneak in), so we recommend that everyone
2288 upgrade to this release when possible.
2290 Thanks to the many people that worked to fix these bugs, and those
2291 that did the work to report them and to test the fixes, (wherever
2292 possible both names are credited below).
2294 Critical fixes
2295 --------------
2296 • Fix a crash due to a LOCK vs. UNLOCK typo (M. Drochner fixing Carl
2297   Worth's embarrassing typo).
2299   http://bugs.freedesktop.org/show_bug.cgi?id=10235
2301 • Fix potential buffer overflow, which on some systems with a checking
2302   variant of snprintf would lead to a crash (Adrian Johnson, Stanislav
2303   Brabec, and sangu).
2305   https://bugs.freedesktop.org/show_bug.cgi?id=10267
2306   https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=232576
2308 • Fix a crash in cairo_stroke_extents or cairo_in_stroke when line
2309   width is 0.0. (Carl Worth and Sebastien Bacher)
2311   https://bugs.freedesktop.org/show_bug.cgi?id=10231
2313 • Fix a crash on certain combinations of X server/video drivers (Carl
2314   Worth and Tomas Carnecky).
2316   https://bugs.freedesktop.org/show_bug.cgi?id=10250
2318 • Fix a crash due to mishandling of invalid user input (Carl Worth and
2319   Alexander Darovsky).
2321   https://bugs.freedesktop.org/show_bug.cgi?id=9844
2323 • xlib: Cleanup server-side glyph caches on XCloseDisplay. This
2324   eliminated a crash detected by the perf suite, (and that
2325   applications could have run into as well). (Chris Wilson)
2327 Other bug fixes
2328 ---------------
2329 • Fix for some geometry which simply disappeared under some
2330   transformations---a stroked line with an extreme skew in X, for
2331   example (Carl Worth and Jonathan Watt).
2333   https://bugzilla.mozilla.org/show_bug.cgi?id=373632
2335 • SVG: Fix radial gradients for CAIRO_EXTEND_REFLECT and when r0 > r1
2336   (Emmanuel Pacaud).
2338 • PDF: Set page group color space to DeviceRGB.
2340   This fixes incorrect (muddy) transparent colors when rendering cairo
2341   PDF output in some viewers. (Adrian Johnson, Adam Goode, and
2342   MenTaLguY).
2344   http://lists.freedesktop.org/archives/cairo/2006-November/008551.html
2346 • win32: Return correct metrics when hinting is off, and fix font
2347   descent computation (Behdad Esfahbod).
2349 • quartz: Fix glyph interfaces to correctly return user-space rather
2350   than device-space coordinates (Brian Ewins).
2352   https://bugs.freedesktop.org/show_bug.cgi?id=9568
2354 • xcb: Fix parameter-order confusion with xcb_create_pixmap, which now
2355   makes all tests that pass with xlib now pass with xcb (Carl Worth,
2356   Jamey Sharp).
2358 • Fix some memory leaks in the perf suite (Chris Wilson).
2360 • Fix perf suite to consider changes in pixman/src (Mathias
2361   Hasselmann).
2363 Build fixes
2364 -----------
2365 • Don't include pre-generated cairo-features.h file. This was causing
2366   build failures when building with the directfb backend enabled
2367   (Behdad Esfahbod).
2369   https://bugs.freedesktop.org/show_bug.cgi?id=10189
2371 • Eliminate use of maintainer mode from cairo's automake/configure
2372   script. This means that updates to files such as Makefile.am will
2373   take effect, (by rerunning automake and friends as necessary) when
2374   invoking make rather than being silently ignored.  (Behdad Esfahbod)
2376 • Don't compile cairo-deflate-stream.c, which depends on zlib, unless
2377   building the pdf backend which requires it. (Carl Worth, Tor
2378   Lillqvist)
2380   https://bugs.freedesktop.org/show_bug.cgi?id=10202
2382 • Don't make the ps backend link against zlib anymore, since it
2383   doesn't require it (Carl Worth).
2385 • Use "find !" rather than "find -not" for better portability (Thomas
2386   Klausner).
2388   https://bugs.freedesktop.org/show_bug.cgi?id=10226
2390 • Don't use unsupported visibility attribute "hidden" on Solaris
2391   (Gilles Dauphin, Thomas Klausner).
2393   https://bugs.freedesktop.org/show_bug.cgi?id=10227
2395 Optimization
2396 ------------
2397 • It was Behdad that suggested we focus strictly on bug fixes now that
2398   we shipped so many performance improvements in 1.4.0, but it was
2399   also Behdad that got distracted by the chance to remove a lot of
2400   mallocs from cairo. Paths, gstates, trapezoids, splines, polygons,
2401   and gradient color stops will now use small, stack-allocated buffers
2402   in the most common cases rather than calling malloc as
2403   often. (Behdad Esfahbod). And look for more from Mathias Hasselmann
2404   soon.
2406 Release 1.4.0 (2007-03-06 Carl Worth <cworth@cworth.org>)
2407 =========================================================
2408 The many people[*] who have been working hard on cairo are very
2409 pleased to announce the long-awaited release of cairo 1.4. This
2410 release comes 4 months after the last stable update release (1.2.6)
2411 and 9 months since the initial release of 1.2.0.
2413 The release notes below are intended to capture the highlights of the
2414 changes that have occurred from the 1.2 series to the new 1.4.0
2415 release.
2417 Performance improvements
2418 ------------------------
2419 Within the cairo project, the last 6 months or so has seen an intense
2420 effort focusing on the performance of cairo itself. That effort has
2421 paid off considerably, as can be seen in the following highlights of
2422 some of the performance differences from cairo 1.2.6 to cairo 1.4.0.
2424 (Note: The performance results reported here were measured on an x86
2425 laptop. Many of the improvements in 1.4---particular those involving
2426 text rendering---are even more dramatic on embedded platforms without
2427 hardware floating-point units. Such devices played an important part
2428 of many of the optimizations that found their way into cairo over the
2429 last few months.)
2431 • Dramatic improvement when drawing objects that are mostly off-screen
2432   with the image backend (with the xlib backend this case is still
2433   slow due to an X server bug):
2435   image-rgba       long-lines-uncropped-100  479.64 ->  4.98: 96.24x speedup
2436   ███████████████████████████████████████████████▋
2438 • Dramatic improvement when copying a small fraction of an image
2439   surface to an xlib surface:
2441    xlib-rgba              subimage_copy-512    3.93 ->  0.07: 54.52x speedup
2442   ██████████████████████████▊
2444 • Dramatic improvement to tessellation speed for complex objects:
2446   image-rgb              tessellate-256-100  874.16 -> 34.79: 25.13x speedup
2447   ████████████▏
2448    xlib-rgba        zrusin_another_fill-415  148.40 -> 13.85: 10.72x speedup
2449   ████▉
2450    xlib-rgb                  world_map-800  680.20 -> 345.54:  1.97x speedup
2451   ▌
2453 • Dramatic improvement to the speed of stroking rectilinear shapes,
2454   (such as the outline of a rectangle or "box"):
2456   image-rgb          box-outline-stroke-100    0.18 ->  0.01: 24.22x speedup
2457   ███████████▋
2458    xlib-rgb          box-outline-stroke-100    0.46 ->  0.06:  8.05x speedup
2459   ███▌
2462 • Dramatic improvements to text rendering speeds:
2464    xlib-rgba       text_image_rgba_over-256   63.12 ->  9.61:  6.57x speedup
2465   ██▊
2467 • 3x improvements to floating-point to fixed-point conversion speeds:
2469   image-rgba      pattern_create_radial-16     9.29 ->  3.44:  2.70x speedup
2470   ▉
2472 • 2x improvements to linear gradient computation:
2474   image-rgb     paint_linear_rgb_source-512   26.22 -> 11.61:  2.26x speedup
2475   ▋
2477 • 2x improvement to a case common in PDF rendering:
2479   image-rgb              unaligned_clip-100    0.10 ->  0.06:  1.81x speedup
2480   ▍
2482 • 1.3x improvement to rectangle filling speed (note: this improvement
2483   is new since 1.3.16---previously this test case was a 1.3x slowdown
2484   compared to 1.2.6):
2486   image-rgba                 rectangles-512    6.19 ->  4.37:  1.42x speedup
2487   ▎
2488   xlib-rgba                  rectangles-512    7.48 ->  5.58:  1.34x speedup
2489   ▏
2491 NOTE: In spite of our best efforts, there are some measurable
2492 performance regressions in 1.4 compared to 1.2. It appears that the
2493 primary problem is the increased overhead of the new tessellator when
2494 drawing many, very simple shapes. The following test cases capture
2495 some of that slowdown:
2497   image-rgba    mosaic_tessellate_lines-800   11.03 -> 14.29:  1.30x slowdown
2498   ▏
2499   image-rgba           box-outline-fill-100    0.01 ->  0.01:  1.26x slowdown
2500   ▏
2501   image-rgba        fill_solid_rgb_over-64     0.20 ->  0.22:  1.12x slowdown
2503   image-rgba       fill_image_rgba_over-64     0.23 ->  0.25:  1.10x slowdown
2505    xlib-rgb     paint_image_rgba_source-256    3.24 ->  3.47:  1.07x slowdown
2507 We did put some special effort into eliminating this slowdown for the
2508 very common case of drawing axis-aligned rectangles with an identity
2509 matrix (see the box-outline-stroke and rectangles speedup numbers
2510 above). Eliminating the rest of this slowdown will be a worthwhile
2511 project going forward.
2513 Also note that the "box-outline-fill" case is a slowdown while
2514 "box-outline-stroke" is a (huge) speedup. These two test cases
2515 resulted from the fact that some GTK+ theme authors were filling
2516 between two rectangles to avoid slow performance from the more natural
2517 means of achieving the same shape by stroking a single rectangle. With
2518 1.4 that workaround should definitely be eliminated as it will now
2519 cause things to perform more slowly.
2521 Greatly improved PDF output
2522 ---------------------------
2523 We are very happy to be able to announce that cairo-generated PDF
2524 output will now have text that can be selected, cut-and-pasted, and
2525 searched with most capable PDF viewer applications. This is something
2526 that was not ever possible with cairo 1.2.
2528 Also, the PDF output now has much more compact encoding of text than
2529 before. Cairo is now much more careful to not embed multiple copies of
2530 the same font at different sizes. It also compresses text and font
2531 streams within the PDF output.
2533 API additions
2534 -------------
2535 There are several new functions available in 1.4 that were not
2536 available in 1.2. Curiously, almost all of the new functions simply
2537 allow the user to query state that has been set in cairo (many new
2538 "get" functions) rather than providing any fundamentally new
2539 operations. The new functionality is:
2541 • Getting information about the current clip region
2543   cairo_clip_extents
2544   cairo_copy_clip_rectangle_list
2545   cairo_rectangle_list_destroy
2547 • Getting information about the current dash setting
2549   cairo_get_dash_count
2550   cairo_get_dash
2552 • Getting information from a pattern
2554   cairo_pattern_get_rgba
2555   cairo_pattern_get_surface
2556   cairo_pattern_get_color_stop_rgba
2557   cairo_pattern_get_color_stop_count
2558   cairo_pattern_get_linear_points
2559   cairo_pattern_get_radial_circles
2561 • Getting the current scaled font
2563   cairo_get_scaled_font
2565 • Getting reference counts
2567   cairo_get_reference_count
2568   cairo_surface_get_reference_count
2569   cairo_pattern_get_reference_count
2570   cairo_font_face_get_reference_count
2571   cairo_scaled_font_get_reference_count
2573 • Setting/getting user data on objects
2575   cairo_set_user_data
2576   cairo_get_user_data
2577   cairo_pattern_set_user_data
2578   cairo_pattern_get_user_data
2579   cairo_scaled_font_set_user_data
2580   cairo_scaled_font_get_user_data
2582 • New cairo-win32 functions:
2584   cairo_win32_surface_create_with_ddb
2585   cairo_win32_surface_get_image
2586   cairo_win32_scaled_font_get_logical_to_device
2587   cairo_win32_scaled_font_get_device_to_logical
2589 API deprecation
2590 ---------------
2591 The CAIRO_FORMAT_RGB16_565 enum value has been deprecated. It never
2592 worked as a format value for cairo_image_surface_create, and it wasn't
2593 necessary for supporting 16-bit 565 X server visuals.
2595 A sampling of bug fixes in cairo 1.4
2596 ------------------------------------
2597   • Fixed radial gradients
2598   • Fixed dashing (degenerate and "leaky" cases)
2599   • Fixed transformed images in PDF/PS output (eliminate bogus repeating)
2600   • Eliminate errors from CAIRO_EXTEND_REFLECT and CAIRO_EXTEND_PAD
2601   • cairo_show_page no longer needed for single-page output
2602   • SVG: Fix bug preventing text from appearing in many viewers
2603   • cairo-ft: Return correct metrics when hinting is off
2604   • Eliminate crash in cairo_create_similar if nil surface is returned
2605   • Eliminate crash after INVALID_RESTORE error
2606   • Fix many bugs related to multi-threaded use and locking
2607   • Fix for glyph spacing 32 times larger than desired (cairo-win32)
2608   • Fixed several problems in cairo-atsui (assertion failures)
2609   • Fix PDF output to avoid problems when printing from Acrobat Reader
2610   • Fix segfault on Mac OS X (measuring a zero-length string)
2611   • Fix text extents to not include the size of non-inked characters
2612   • Fix for glyph cache race condition in glitz backend (Jinghua Luo)
2613   • Fix make check to work on OPD platforms (IA64 or PPC64)
2614   • Fix compilation problems of cairo "wideint" code on some platforms
2615   • Many, many others...
2617 Experimental backends (quartz, XCB, OS/2, BeOS, directfb)
2618 ---------------------------------------------------------
2619 None of cairo's experimental backends are graduating to "supported"
2620 status with 1.4.0, but two of them in particular (quartz and xcb), are
2621 very close.
2623 The quartz baceknd has been entirely rewritten and is now much more
2624 efficient. The XCB backend has been updated to track the latest XCB
2625 API (which recently had a 1.0 release).
2627 We hope to see these backends become supported in a future release,
2628 (once they are passing all the tests in cairo's test suite).
2630 The experimental OS/2 backend is new in cairo 1.4 compared to cairo
2631 1.2.
2633 Documentation improvements
2634 --------------------------
2635 We have added documentation for several functions and types that
2636 were previously undocumented, and improved documentation on other
2637 ones.  As of this release, there remain only two undocumented
2638 symbols: cairo_filter_t and cairo_operator_t.
2640 [*]Thanks to everyone
2641 ---------------------
2642 I've accounted for 41 distinct people with attributed code added to
2643 cairo between 1.2.6 and 1.4.0, (their names are below). That's an
2644 impressive number, but there are certainly dozens more that
2645 contributed with testing, suggestions, clarifying questions, and
2646 encouragement. I'm grateful for the friendships that have developed as
2647 we have worked on cairo together. Thanks to everyone for making this
2648 all so much fun!
2650 Adrian Johnson, Alfred Peng, Alp Toker, Behdad Esfahbod,
2651 Benjamin Otte, Brian Ewins, Carl Worth, Christian Biesinger,
2652 Christopher (Monty) Montgomery, Daniel Amelang, Dan Williams,
2653 Dave Yeo, David Turner, Emmanuel Pacaud, Eugeniy Meshcheryakov,
2654 Frederic Crozat, Hans Breuer, Ian Osgood, Jamey Sharp, Jeff Muizelaar,
2655 Jeff Smith, Jinghua Luo, Jonathan Watt, Joonas Pihlaja, Jorn Baayen,
2656 Kalle Vahlman, Kjartan Maraas, Kristian Høgsberg, M Joonas Pihlaja,
2657 Mathias Hasselmann, Mathieu Lacage, Michael Emmel, Nicholas Miell,
2658 Pavel Roskin, Peter Weilbacher, Robert O'Callahan,
2659 Soren Sandmann Pedersen, Stuart Parmenter, T Rowley,
2660 Vladimir Vukicevic
2662 Snapshot 1.3.16 (2007-03-02 Carl Worth <cworth@cworth.org>)
2663 ===========================================================
2664 New API functions
2665 -----------------
2666 A few new public functions have been added to the cairo API since the
2667 1.3.14 snapshot. These include a function to query the current scaled
2668 font:
2670         cairo_get_scaled_font
2672 New functions to query the reference count of all cairo objects:
2674         cairo_get_reference_count
2676         cairo_surface_get_reference_count
2677         cairo_pattern_get_reference_count
2679         cairo_font_face_get_reference_count
2680         cairo_scaled_font_get_reference_count
2682 And new functions to allow the use of user_data with any cairo object,
2683 (previously these were only available on cairo_surface_t and
2684 cairo_font_face_t objects):
2686         cairo_set_user_data
2687         cairo_get_user_data
2689         cairo_pattern_set_user_data
2690         cairo_pattern_get_user_data
2692         cairo_scaled_font_set_user_data
2693         cairo_scaled_font_get_user_data
2695 Usability improvement for PDF/PS/SVG generation
2696 -----------------------------------------------
2697 In previous versions of cairo, generating single-page output with the
2698 cairo-pdf, cairo-ps, or cairo-svg backends required a final call to
2699 cairo_show_page. This was often quite confusing as people would port
2700 functional code from a non-paginated backend and be totally mystified
2701 as to why the output was blank until they learned to add this call.
2703 Now that call to cairo_show_page is optional, (it will be generated
2704 implicitly if the user does not call it). So cairo_show_page is only
2705 needed to explicitly separate multiple pages.
2707 Greatly improved PDF output
2708 ---------------------------
2709 We are very happy to be able to announce that cairo-generated PDF
2710 output will now have text that can be selected, cut-and-paste, and
2711 searched with most capable PDF viewer applications. This is something
2712 that was not ever possible with cairo 1.2.
2714 Also, the PDF output now has much more compact encoding of text than
2715 before. Cairo is now much more careful to not embed multiple copies of
2716 the same font at different sizes. It also compresses text and font
2717 streams within the PDF output.
2719 Major bug fixes
2720 ---------------
2721   • Fixed radial gradients
2723     The rendering of radial gradients has been greatly improved. In
2724     the cairo 1.2 series, there was a serious regression affecting
2725     radial gradients---results would be very incorrect unless one of
2726     the gradient circles had a radius of 0.0 and a center point within
2727     the other circle. These bugs have now been fixed.
2729   • Fixed dashing
2731     Several fixes have been made to the implementation of dashed
2732     stroking. Previously, some dashed, stroked rectangles would
2733     mis-render and fill half of the rectangle with a large triangular
2734     shape. This bug has now been fixed.
2736   • Fixed transformed images in PDF/PS output
2738     In previous versions of cairo, painting with an image-based source
2739     surface pattern to the PDF or PS backends would cause many kinds
2740     of incorrect results. One of the most common problems was that an
2741     image would be repeated many times even when the user had
2742     explicitly requested no repetition with CAIRO_EXTEND_NONE. These
2743     bugs have now been fixed.
2745   • Eliminate errors from CAIRO_EXTEND_REFLECT and CAIRO_EXTEND_PAD
2747     In the 1.2 version of cairo any use of CAIRO_EXTEND_REFLECT or
2748     CAIRO_EXTEND_PAD with a surface-based pattern resulted in an
2749     error, (cairo would stop rendering). This bug has now been
2750     fixed.
2752     Now, CAIRO_EXTEND_REFLECT should work properly with surface
2753     patterns.
2755     CAIRO_EXTEND_PAD is still not working correctly, but it will now
2756     simply behave as CAIRO_EXTEND_NONE rather than triggering the
2757     error.
2759 New rewrite of quartz backend (still experimental)
2760 --------------------------------------------------
2761 Cairo's quartz backend has been entirely rewritten and is now much
2762 more efficient. This backend is still marked as experimental, not
2763 supported, but it is now much closer to becoming an officially
2764 supported backend. (For people that used the experimental nquartz
2765 backend in previous snapshots, that implementation has now been
2766 renamed from "nquartz" to "quartz" and has replaced the old quartz
2767 backend.)
2769 Documentation improvements
2770 --------------------------
2771 We have added documentation for several functions and types that
2772 were previously undocumented, and improved documentation on other
2773 ones.  As of this release, there remain only two undocumented
2774 symbols: cairo_filter_t and cairo_operator_t.
2776 Other bug fixes
2777 ---------------
2778   • cairo-svg: Fix bug that was preventing text from appearing in many
2779     viewers
2781   • cairo-ft: Return correct metrics when hinting is off
2783   • Cairo 1.3.14 deadlocks in cairo_scaled_font_glyph_extents or
2784     _cairo_ft_unscaled_font_lock_face
2786     https://bugs.freedesktop.org/show_bug.cgi?id=10035
2788   • cairo crashes in cairo_create_similar if nil surface returned by
2789     other->backend->create_similar
2791     https://bugs.freedesktop.org/show_bug.cgi?id=9844
2793   • evolution crash in _cairo_gstate_backend_to_user()
2794     https://bugs.freedesktop.org/show_bug.cgi?id=9906
2796   • Fix memory leak in rectilinear stroking code
2798 Things not in this release
2799 --------------------------
2800   • Solid-surface-pattern cache: This patch had been applied during
2801     the 1.3.x series, but it was reverted due to some inter-thread
2802     problems it caused. The patch is interesting since it made a big
2803     benefit for text rendering performance---so we'll work to bring a
2804     corrected version of this patch back as soon as possible.
2806 Snapshot 1.3.14 (2006-02-13 Carl Worth <cworth@cworth.org>)
2807 ===========================================================
2808 This is the seventh development snapshot in the 1.3 series, (and there
2809 likely won't be many more before the 1.4.0 release). It comes just
2810 over 3 weeks after the 1.3.12 snapshot.
2812 Since we're so close to the 1.4.0 release, there are not a lot of new
2813 features nor even a lot of new performance improvements in this
2814 snapshot. Instead, there are a great number of bug fixes. Some are
2815 long-standing bugs that we're glad to say goodbye to, and several are
2816 fixes for regressions that were introduced as part of the optimization
2817 efforts during the 1.3.x series.
2819 PDF text selection fixed
2820 ------------------------
2821 The inability to correctly select text in cairo-generated PDF has been
2822 a defect ever since the initial support for the PDF backend in the
2823 cairo 1.2.0 release. With the 1.3.14 snapshot, in most situations, and
2824 with most PDF viewer applications, the PDF generated by cairo will
2825 allow text to be correctly selected for copy-and-paste, (as well as
2826 searching).
2828 We're very excited about this new functionality, (and very grateful to
2829 Adrian Johnson, Behdad Esfahbod, and others that have put a lot of
2830 work into this lately). Please test this new ability and give feedback
2831 on the cairo@cairographics.org list.
2833 Many thread-safety issues fixed
2834 -------------------------------
2835 We've discovered that no release of cairo has ever provided safe text
2836 rendering from a multi-threaded application. With the 1.3.14 snapshot
2837 a huge number of the bugs in this area have been fixed, and multiple
2838 application dvelopers have now reported success at writing
2839 multi-threaded applications with cairo.
2841 Other fixes
2842 -----------
2843 Fixed a bug that was causing glyph spacing to be 32 times larger than
2844 desired when using cairo-win32.
2846 Fixed a regression in the rendering of linear gradients that had been
2847 present since the 1.3.8 snapshot.
2849 Fixed several problems in cairo-atsui that were leading to assertion
2850 failures when rendering text.
2852 Fix corrupted results when rendering a transformed source image
2853 surface to an xlib surface. This was a regression that had been
2854 present since the 1.3.2 snapshot.
2856 Fixed PDF output to prevent problems printing from some versions of
2857 Acrobat Reader, (a single glyph was being substituted for every
2858 glyph).
2860 And many other fixes as well, (see the logs for details).
2862 Snapshot 1.3.12 (2007-01-20 Carl Worth <cworth@cworth.org>)
2863 ===========================================================
2864 The relentless march toward the cairo 1.4 release continues, (even if
2865 slightly late out of the starting blocks in 2007). This is the sixth
2866 development snapshot in the 1.3 series. It comes 4 weeks after the
2867 1.3.10 snapshot.
2869 Performance
2870 -----------
2871 As usual, this snapshot has some fun performance improvements to show
2872 off:
2874 image-rgba long-lines-uncropped-100  470.08 -> 4.95: 94.91x speedup
2875 ███████████████████████████████████████████████
2876 image-rgb  long-lines-uncropped-100  461.60 -> 4.96: 93.02x speedup
2877 ██████████████████████████████████████████████
2879 This 100x improvement, (and yes, that's 100x, not 100%), in the image
2880 backend occurs when drawing large shapes where only a fraction of the
2881 shape actually appears in the final result, (the rest being outside
2882 the bounds of the destination surface). Many applications should see
2883 speedups here, and the actual amount of speedup depends on the ratio
2884 of non-visible to visible portions of geometry.
2886 [Note: There remains a similar performance bug when drawing mostly
2887 non-visible objects with the xlib backend. This is due to a similar
2888 bug in the X server itself, but we hope a future cairo snapshot will
2889 workaround that bug to get a similar speedup with the xlib backend.]
2891 image-rgba       unaligned_clip-100    0.09 -> 0.06:  1.67x speedup
2893 image-rgb        unaligned_clip-100    0.09 -> 0.06:  1.66x speedup
2896 This speedup is due to further MMX optimization by Soeren Sandmann for
2897 a case commonly hit when rendering PDF files, (and thanks to Jeff
2898 Muizelaar for writing code to extract the test case for us).
2900 There's another MMX optimization in this snapshot (without a fancy
2901 speedup chart) by Dan Williams which improves compositing performance
2902 specifically for the OLPC machine.
2904 Thanks to Adrian Johnson, cairo's PDF output is now much more
2905 efficient in the way it encodes text output. By reducing redundant
2906 information and adding compression to text output streams, Adrian
2907 achieved a ~25x improvement in the efficiency of encoding text in PDF
2908 files, (was ~45 bytes per glyph and is now ~1.6 bytes per glyph).
2910 Bug fixes
2911 ---------
2912 In addition to those performance improvements, this snapshot includes
2913 several bug fixes:
2915  * A huge number of bug fixes for cairo-atsui text rendering, (for mac
2916    OS X). These bugs affect font selection, glyph positioning, glyph
2917    rendering, etc. One noteworthy bug fixes is that
2918    cairo_select_font_face will no longer arbitrarily select bold nor
2919    italic when not requested, (at least not when using a standard CSS2
2920    font family name such as "serif", "sans-serif", "monospace", etc.).
2921    All these fixes are thanks to Brian Ewins who continues to do a
2922    great job as the new cairo-atsui maintainer.
2924  * Fix PDF output so that images that are scaled down no longer
2925    mysteriously repeat (Carl Worth).
2927  * Fix segfault on Mac OS X dues to attempt to measure extents of a
2928    zero-length string (Behdad Esfahbod).
2930  * Fix text extents to not include the size of initial/trailing
2931    non-inked characters (Behdad Esfahbod).
2933 API tweaks
2934 ----------
2935 Three functions have had API changes to improve consistency. Note that
2936 the API functions being changed here are all functions that were
2937 introduced as new functions during these 1.3.x snapshots. As always,
2938 there will not be any API changes to functions included in a major
2939 release (1.2.x, 1.4.x, etc.) of cairo.
2941 The changes are as follows:
2943  * Rename of cairo_copy_clip_rectangles to cairo_copy_clip_rectangle_list.
2945  * Change cairo_get_dash_count to return an int rather than accepting a
2946    pointer to an int for the return value.
2948  * Change cairo_get_dash to have a void return type rather than
2949    returning cairo_status_t.
2951 It's possible there will be one more round of changes to these
2952 functions, (and perhaps cairo_get_color_stop as well), as we seek to
2953 establish a unifying convention for returning lists of values.
2955 Snapshot 1.3.10 (2006-12-23 Carl Worth <cworth@cworth.org>)
2956 ===========================================================
2957 Santa Claus is coming just a little bit early this year, and he's
2958 bringing a shiny new cairo snapshot for all the good little boys and
2959 girls to play with.
2961 This is the fifth development snapshot in the 1.3 series. It comes 9
2962 days after the 1.3.8 snapshot, and still well within our goal of
2963 having a new snapshot every week, (though don't expect one next
2964 week---we'll all be too stuffed with sugar plums).
2966 Speaking of sugar plums, there's a sweet treat waiting in this cairo
2967 snapshot---greatly improved performance for stroking rectilinear
2968 shapes, like the ever common rectangle:
2970 image-rgb          box-outline-stroke-100 0.18 -> 0.01: 25.58x speedup
2971 ████████████████████████▋
2972 image-rgba         box-outline-stroke-100 0.18 -> 0.01: 25.57x speedup
2973 ████████████████████████▋
2974 xlib-rgb          box-outline-stroke-100 0.49 -> 0.06:  8.67x speedup
2975 ███████▋
2976 xlib-rgba         box-outline-stroke-100 0.22 -> 0.04:  5.39x speedup
2977 ████▍
2979 In past releases of cairo, some people had noticed that using
2980 cairo_stroke to draw rectilinear shapes could be awfully slow. Many
2981 people had worked around this by using cairo_fill with a more complex
2982 path and gotten a 5-15x performance benefit from that.
2984 If you're one of those people, please rip that workaround out, as now
2985 the more natural use of cairo_stroke should be 1.2-2x faster than the
2986 unnatural use of cairo_fill.
2988 And if you hadn't ever implemented that workaround, then you just
2989 might get to see your stroked rectangles now get drawn 5-25x faster.
2991 Beyond that performance fix, there are a handful of bug fixes in this
2992 snapshot:
2994  * Fix for glyph cache race condition in glitz backend (Jinghua Luo)
2996  * Many fixes for ATSUI text rendering (Brian Ewins)
2998  * Un-break recent optimization-triggered regression in rendering text
2999    with a translation in the font matrix (Behdad Esfahbod)
3001  * Fix make check to work on OPD platforms (IA64 or PPC64)
3002    (Frederic Crozat)
3004  * Fix a couple of character spacing issues on Windows
3005     (Jonathan Watt)
3007 Have fun with that, everybody, and we'll be back for more in the new
3008 year, (with a plan to add the last of our performance improvements in
3009 this round, fix a few bad, lingering bugs, and then finish off a nice,
3010 stable 1.4 release before the end of January).
3012 -Carl
3014 Snapshot 1.3.8 (2006-12-14 Carl Worth <cworth@cworth.org>)
3015 ==========================================================
3016 This is the fourth development snapshot in the 1.3 series. It comes
3017 just slightly more than one week after the 1.3.6 snapshot.
3019 After the bug fixes in 1.3.6, we're back to our original program of
3020 weekly snapshots, each one faster than the one from the week
3021 before. Cairo 1.3.8 brings a 2x improvement in the speed of rendering
3022 linear gradients (thanks to David Turner), and a significant reduction
3023 in X traffic when rendering text (thanks to Xan Lopez and Behdad
3024 Esfahbod), making cairo behave very much like Xft does.
3026 A few other things in the 1.3.8 snapshot worth noting include a more
3027 forgiving image comparator in the test suite, (using the "perceptual
3028 diff" metric and GPL implementation by Hector Yee[*]), a bug fix for
3029 broken linking on x86_64 (thanks to M Joonas Pihlaja) and an even
3030 better implementation of _cairo_lround, (not faster, but supporting a
3031 more complete input range), from Daniel Amelang.
3033 [*] http://pdiff.sourceforge.net/
3035 Snapshot 1.3.6 (2006-12-06 Carl Worth <cworth@cworth.org>)
3036 ==========================================================
3037 This is the third development snapshot in the 1.3 series. It comes two
3038 weeks after the 1.3.4 snapshot.
3040 We don't have fancy performance charts this week as the primary
3041 changes in this snapshot are bug fixes. The performance work continues
3042 and the next snapshot (planned for one week from today) should include
3043 several improvements. The bug fixes in this snapshot include:
3045  * Fix undesirable rounding in glyph positioning (Dan Amelang)
3047    This bug was noticed by several users, most commonly by seeing
3048    improper text spacing or scrambled glyphs as drawn by nautilus. For
3049    example:
3051         Update to cairo-1.3.4 worsen font rendering
3052         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=217819
3054  * Fix reduced range of valid input coordinates to tessellator
3055    (M Joonas Pihlaja)
3057    This bug was causing lots of assertion failures in mozilla as
3058    mentioned here:
3060         CAIRO_BO_GUARD_BITS and coordinate space?
3061         http://lists.freedesktop.org/archives/cairo/2006-December/008743.html
3063  * Fix several regressions in new tessellator (M Joonas Pihlaja)
3065    Joonas just had a good eye for detail here. I don't think any
3066    external cairo users had noticed any of these bugs yet.
3068  * Fix compilation problems of cairo "wideint" code on some platforms
3069    (Mathieu Lacage)
3071  * Fix failed configure due to broken grep (Dan Amelang)
3073    This bug was reported here:
3075         AX_C_FLOAT_WORDS_BIGENDIAN doesn't work because grep doesn't
3076         work with binary file
3077         https://bugs.freedesktop.org/show_bug.cgi?id=9124
3079  * Remove the pkg-config minimum version requirement (Behdad Esfahbod)
3081    Some systems ship with pkg-config 0.15 and there was really no good
3082    reason for cairo to insist on having version 0.19 before it would
3083    build.
3085 There is also one new (but inert) feature in this snapshot. There's a
3086 new option that can be passed to cairo's configure script:
3088         --disable-some-floating-point
3090         Disable certain code paths that rely heavily on double precision
3091         floating-point calculation. This option can improve
3092         performance on systems without a double precision floating-point
3093         unit, but might degrade performance on those that do.
3095 As of this snapshot, this option does not make any change to cairo,
3096 but it is possible that future versions of cairo will respect this
3097 option and change the implementation of various functions as
3098 appropriate.
3100 Snapshot 1.3.4 (2006-11-22 Carl Worth <cworth@cworth.org>)
3101 ==========================================================
3102 This is the second development snapshot in the 1.3 series. It comes
3103 one week after the 1.3.2 snapshot.
3105 This snapshot has a couple of significant performance improvements,
3106 and also adds new support for producing multi-page SVG output, (when
3107 targeting SVG 1.2)---thanks to Emmanuel Pacaud. The details of the
3108 performance improvements are as follows:
3110 1. The long-awaited "new tessellator".
3112    The credit for this being an improvement goes to Joonas Pihlaja. He
3113    took my really slow code and really put it through its paces to get
3114    the dramatic performance improvement seen below (up to 38x faster
3115    on realistic cases, and more than 10x faster for the zrusin_another
3116    test).
3118    His own writeup of the work he did is quite thorough, but more than
3119    can be quoted here. Please see his post for the interesting details:
3121    http://lists.freedesktop.org/archives/cairo/2006-November/008483.html
3123    (Though note that this snapshot also includes some additional,
3124    significant improvements that were only sketched out in that
3125    email---see "Generating fewer trapezoids").
3127 2. More floating-point improvements
3129    Daniel Amelang continues to work the magic he began in the 1.3.2
3130    snapshot. This time he short-circuits floating-point
3131    transformations by identity matrices and applies the earlier
3132    floating-to-fixed-point technique to the problem of rounding.
3134    The improvements here will primarily benefit text performance, and
3135    will benefit platforms without hardware floating-point more than
3136    those that have it, (some text tests show 20% improvement on an x86
3137    machine and closer to 80% improvement on arm).
3139 The performance chart comparing 1.3.2 to 1.3.4 really speaks for
3140 itself, (this is on an x86 laptop). This is quite a lot of progress
3141 for one week:
3143  xlib-rgb    stroke_similar_rgba_over-256   74.99 1.45% ->   2.03 68.38%: 36.86x speedup
3144 ███████████████████████████████████▉
3145  xlib-rgb  stroke_similar_rgba_source-256   78.23 1.43% ->   3.30 67.05%: 23.71x speedup
3146 ██████████████████████▊
3147  xlib-rgba             tessellate-256-100  820.42 0.15% ->  35.06 2.84%: 23.40x speedup
3148 ██████████████████████▍
3149 image-rgba             tessellate-256-100  819.55 0.32% ->  35.04 3.56%: 23.39x speedup
3150 ██████████████████████▍
3151  xlib-rgb      stroke_image_rgba_over-256   78.10 1.43% ->   4.33 65.56%: 18.04x speedup
3152 █████████████████
3153  xlib-rgb    stroke_image_rgba_source-256   80.11 1.63% ->   5.75 63.99%: 13.94x speedup
3154 █████████████
3155  xlib-rgba  zrusin_another_tessellate-415   89.22 0.35% ->   8.38 5.23%: 10.65x speedup
3156 █████████▋
3157 image-rgba  zrusin_another_tessellate-415   87.38 0.89% ->   8.37 5.22%: 10.44x speedup
3158 █████████▍
3159 image-rgba        zrusin_another_fill-415  117.67 1.34% ->  12.88 2.77%:  9.14x speedup
3160 ████████▏
3161  xlib-rgba        zrusin_another_fill-415  140.52 1.57% ->  15.79 2.88%:  8.90x speedup
3162 ███████▉
3163 image-rgba              tessellate-64-100    9.68 3.42% ->   1.42 0.60%:  6.82x speedup
3164 █████▉
3165  xlib-rgba              tessellate-64-100    9.78 4.35% ->   1.45 0.83%:  6.72x speedup
3166 █████▊
3167  xlib-rgb     stroke_linear_rgba_over-256   46.01 2.44% ->   7.74 54.51%:  5.94x speedup
3168 █████
3169  xlib-rgb   stroke_linear_rgba_source-256   48.09 2.15% ->   9.14 53.00%:  5.26x speedup
3170 ████▎
3171  xlib-rgb     stroke_radial_rgba_over-256   50.96 2.34% ->  12.46 47.99%:  4.09x speedup
3172 ███▏
3173  xlib-rgb   stroke_radial_rgba_source-256   53.06 1.57% ->  13.96 46.57%:  3.80x speedup
3174 ██▊
3175 image-rgba  paint_similar_rgba_source-256    0.12 1.57% ->   0.08 9.92%:  1.42x speedup
3177 image-rgba    paint_image_rgba_source-256    0.12 2.49% ->   0.08 10.70%:  1.41x speedup
3179 image-rgba                  world_map-800  356.28 0.46% -> 275.72 1.15%:  1.29x speedup
3181  xlib-rgba                  world_map-800  456.81 0.39% -> 357.95 1.39%:  1.28x speedup
3183 image-rgb               tessellate-16-100    0.09 0.57% ->   0.07 3.43%:  1.23x speedup
3185 image-rgba              tessellate-16-100    0.09 0.06% ->   0.07 2.46%:  1.23x speedup
3187 image-rgba        text_solid_rgb_over-256    5.39 4.01% ->   4.47 0.70%:  1.21x speedup
3189 image-rgba       text_solid_rgba_over-256    5.37 0.82% ->   4.45 0.75%:  1.21x speedup
3191 image-rgba        text_image_rgb_over-64     0.78 0.10% ->   0.65 0.74%:  1.20x speedup
3193 image-rgba       text_image_rgba_over-64     0.78 0.29% ->   0.65 0.68%:  1.19x speedup
3195 image-rgb         text_solid_rgb_over-64     0.76 2.45% ->   0.63 0.81%:  1.19x speedup
3197 image-rgba       text_solid_rgba_over-64     0.76 0.33% ->   0.64 0.66%:  1.19x speedup
3199 image-rgba     text_similar_rgba_over-256    5.99 4.72% ->   5.04 1.09%:  1.19x speedup
3202 We should point out that there is some potential for slowdown in this
3203 snapshot. The following are the worst slowdowns reported by the cairo
3204 performance suite when comparing 1.3.2 to 1.3.4:
3206 image-rgba              subimage_copy-256    0.01 0.87% ->   0.01 3.61%:  1.45x slowdown
3208  xlib-rgb        paint_solid_rgb_over-256    0.31 10.23% ->   0.38 0.33%:  1.26x slowdown
3210 image-rgba           box-outline-fill-100    0.01 0.30% ->   0.01 2.52%:  1.21x slowdown
3212 image-rgba        fill_solid_rgb_over-64     0.20 1.22% ->   0.22 1.59%:  1.12x slowdown
3214 image-rgb       fill_similar_rgb_over-64     0.21 1.04% ->   0.24 1.06%:  1.11x slowdown
3216 image-rgba        fill_image_rgb_over-64     0.21 1.19% ->   0.24 0.72%:  1.11x slowdown
3218 image-rgba      fill_similar_rgb_over-64     0.21 0.18% ->   0.24 0.30%:  1.11x slowdown
3220 image-rgb        fill_solid_rgba_over-64     0.22 1.66% ->   0.24 1.15%:  1.11x slowdown
3222 image-rgb         fill_image_rgb_over-64     0.21 0.14% ->   0.24 0.80%:  1.11x slowdown
3224 image-rgba       fill_image_rgba_over-64     0.22 1.34% ->   0.25 0.20%:  1.11x slowdown
3226 image-rgba       fill_solid_rgba_over-64     0.22 1.48% ->   0.24 0.95%:  1.11x slowdown
3228 image-rgb      fill_similar_rgba_over-64     0.22 1.13% ->   0.25 1.25%:  1.10x slowdown
3231 The 45% slowdown for subimage_copy is an extreme case. It's unlikely
3232 to hit many applications unless they often use cairo_rectangle;
3233 cairo_fill to copy a single pixel at a time. In any case, it shows a
3234 worst-case impact of the overhead of the new tessellator. The other
3235 slowdowns (~ 10%) are probably more realistic, and still very
3236 concerning.
3238 We will work to ensure that performance regressions like these are not
3239 present from one major release of cairo to the next, (for example,
3240 from 1.2 to 1.4).
3242 But we're putting this 1.3.4 snapshot out there now, even with this
3243 potential slowdown so that people can experiment with it. If you've
3244 got complex geometry, we hope you will see some benefit from the new
3245 tessellator. If you've got primarily simple geometry, we hope things
3246 won't slowdown too much, but please let us know what slowdown you see,
3247 if any, so we can calibrate our performance suite against real-world
3248 impacts.
3250 Thanks, and have fun with cairo!
3252 Snapshot 1.3.2 (2006-11-14 Carl Worth <cworth@cworth.org>)
3253 ==========================================================
3254 This is the first development snapshot since the 1.2 stable series
3255 branched off shortly after the 1.2.4 release in August 2006.
3257 This snapshot includes all the bug fixes from the 1.2.6 release,
3258 (since they originated here on the 1.3 branch first and were
3259 cherry-picked over to 1.2). But more importantly, it contains some new
3260 API in preparation for a future 1.4 release, and most importantly, it
3261 contains several performance improvements.
3263 The bug fixes will not be reviewed here, as most of them are already
3264 described in the 1.2.6 release notes. But details for the new API and
3265 some performance improvements are included here.
3267 As with all snapshots, this is experimental code, and the new API
3268 added here is still experimental and is not guaranteed to appear
3269 unchanged in any future release of cairo.
3271 API additions
3272 -------------
3273 Several new API additions are available in this release. There is a
3274 common theme among all the additions in that they allow cairo to
3275 advertise information about its state that it was refusing to
3276 volunteer earlier. So this isn't groundbreaking new functionality, but
3277 it is essential for easily achieving several tasks.
3279 The new functions can be divided into three categories:
3281         Getting information about the current clip region
3282         -------------------------------------------------
3283         cairo_clip_extents
3284         cairo_copy_clip_rectangles
3285         cairo_rectangle_list_destroy
3287         Getting information about the current dash setting
3288         --------------------------------------------------
3289         cairo_get_dash_count
3290         cairo_get_dash
3292         Getting information from a pattern
3293         ----------------------------------
3294         cairo_pattern_get_rgba
3295         cairo_pattern_get_surface
3296         cairo_pattern_get_color_stop_rgba
3297         cairo_pattern_get_color_stop_count
3298         cairo_pattern_get_linear_points
3299         cairo_pattern_get_radial_circles
3301 In each of these areas, we have new API for providing a list of
3302 uniform values from cairo. The closest thing we had to this before was
3303 cairo_copy_path, (which is rather unique in providing a list of
3304 non-uniform data).
3306 The copy_clip_rectangles/rectangle_list_destroy functions follow a
3307 style similar to that of cairo_copy_path. Meanwhile, the dash and
3308 pattern color stop functions introduce a new style in which there is a
3309 single call to return the number of elements available (get_dash_count
3310 and get_color_stop_count) and then a function to be called once to get
3311 each element (get_dash and get_color_stop_rgba).
3313 I'm interested in hearing feedback from users of these new API
3314 functions, particularly from people writing language bindings. One
3315 open question is whether the clip "getter" functionality should adopt
3316 a style similar to that of the new dash and color_stop interfaces.
3318 API deprecation
3319 ---------------
3320 The CAIRO_FORMAT_RGB16_565 enum value has been deprecated. It never
3321 worked as a format value for cairo_image_surface_create, and it wasn't
3322 necessary for supporting 16-bit 565 X server visuals.
3324 XCB backend changes
3325 -------------------
3326 The XCB backend has been updated to track the latest XCB API (which
3327 recently had a 1.0 release).
3329 New quartz backend
3330 ------------------
3331 Vladimir Vukicevic has written a new "native quartz" backend which
3332 will eventually replace the current "image-surface wrapping" quartz
3333 backend. For now, both backends are available, (the old one is
3334 "quartz" and the new one is "nquartz"). But it is anticipated that the
3335 new backend will replace the old one and take on the "quartz" name
3336 before this backend is marked as supported in a release of cairo.
3338 New OS/2 backend
3339 ----------------
3340 Doodle and Peter Weilbacher have contributed a new, experimental
3341 backend for using cairo on OS/2 systems.
3343 Performance improvements
3344 ------------------------
3345 Here are some highlights from cairo's performance suite showing
3346 improvements from cairo 1.2.6 to cairo 1.3.2. The command used to
3347 generate this data is:
3349         ./cairo-perf-diff 1.2.6 HEAD
3351 available in the perf/ directory of a recent checkout of cairo's
3352 source, (the cairo-perf-diff script does require a git checkout and
3353 will not work from a tar file---though ./cairo-perf can still be used
3354 to generate a single report there and ./cairo-perf-diff-files can be
3355 used to compare two reports).
3357 Results are described below both for an x86 laptop (with an old Radeon
3358 video card, recent X.org build, XAA, free software drivers), as well
3359 as for a Nokia 770. First the x86 results with comments on each, (all
3360 times are reported in milliseconds).
3362 Copying subsets of an image surface to an xlib surface (much faster)
3363 --------------------------------------------------------------------
3364  xlib-rgba              subimage_copy-512   10.50 ->   : 53.97x speedup
3365 █████████████████████████████████████████████████████
3367 Thanks to Christopher (Monty) Montgomery for this big performance
3368 improvement. Any application which has a large image surface and is
3369 copying small pieces of it at a time to an xlib surface, (imagine an
3370 application that loads a single image containing all the "sprites" for
3371 that application), will benefit from this fix. The larger the ratio of
3372 the image surface to the portion being copied, the larger the benefit.
3374 Floating-point conversion (3x faster)
3375 -------------------------------------
3376  xlib-rgba  pattern_create_radial-16    27.75 ->   3.93 :  2.94x speedup
3377 ██
3378 image-rgb   pattern_create_radial-16    26.06 ->   3.74 :  2.90x speedup
3379 █▉
3381 Thanks to Daniel Amelang, (and others who had contributed the idea
3382 earlier), for this nice improvement in the speed of converting
3383 floating-point values to fixed-point.
3385 Text rendering (1.3 - 2x faster)
3386 ------------------------------
3387  xlib-rgba text_image_rgba_source-256  319.73 ->  62.40 :  2.13x speedup
3388 █▏
3389 image-rgb    text_solid_rgba_over-64     2.85 ->   0.88 :  1.35x speedup
3392 I don't think we've ever set out to improve text performance
3393 specifically, but we did it a bit anyway. I believe the extra
3394 improvement in the xlib backend is due to Monty's image copying fix
3395 above, and the rest is due to the floating-point conversion speedup.
3397 Thin stroke improvements (1.5x faster)
3398 ---------------------------------------------
3399 image-rgb               world_map-800  1641.09 -> 414.77 :  1.65x speedup
3401  xlib-rgba              world_map-800  1939.66 -> 529.94 :  1.52x speedup
3404 The most modest stuff to announce in this release is the 50%
3405 improvement I made in the world_map case. This is in improvement that
3406 should help basically anything that is doing strokes with many
3407 straight line segments, (and the thinner the better, since that makes
3408 tessellation dominate rasterization). The fixes here are to use a
3409 custom quadrilateral tessellator rather than the generic tessellator
3410 for straight line segments and the miter joins.
3412 Performance results from the Nokia 770
3413 --------------------------------------
3414  xlib-rgba          subimage_copy-512     55.88 ->     2.04 : 27.34x speedup
3415 ██████████████████████████▍
3416  xlib-rgb     text_image_rgb_over-256   1487.58 ->   294.43 :  5.05x speedup
3417 ████
3418 image-rgb   pattern_create_radial-16     187.13 ->    91.86 :  2.04x speedup
3420  xlib-rgba              world_map-800  21261.41 -> 15628.02 :  1.36x speedup
3423 Here we see that the subimage_copy improvement was only about half as
3424 large as the corresponding improvement on my laptop, (27x faster
3425 compared to 54x) and the floating-point conversion fix also was quite
3426 as significant, (2x compared to 3x). Oddly the improvement to text
3427 rendering performance was more than twice as good (5x compared to
3428 2x). I don't know what the reason for that is, but I don't think it's
3429 anything anybody should complain about.
3431 Release 1.2.6 (2006-11-02 Behdad Esfahbod <behdad@behdad.org>)
3432 ==============================================================
3433 This is the third bug fix release in the 1.2 series, coming less than
3434 two months after the 1.2.4 release made on August 18.
3436 The 1.2.4 release turned out to be a pretty solid one, except for a crasher
3437 bug when forwarding an X connection where the client and the server have
3438 varying byte orders, eg. from a PPC to an i686.  Other than that, various
3439 other small bugs have been fixed.
3441 Various improvements have been made in the testing infrastructure to prevent
3442 false positives, and to make sure the generated cairo shared object behaves as
3443 expected in terms of exported symbols and relocations.
3445 There were a total of 89 changes since 1.2.4.  The following list the most
3446 important ones:
3448 Common fixes
3449 ------------
3450 - Avoid unsigned loop control variable to eliminate infinite,
3451   memory-scribbling loop. (#7593)
3452 - Fix cairo_image_surface_create to report INVALID_FORMAT errors.
3453   Previously the detected error was being lost and a nil surface was
3454   returned that erroneously reported CAIRO_STATUS_NO_MEMORY.
3455 - Change _cairo_color_compute_shorts to not rely on any particular
3456   floating-point epsilon value. (#7497)
3457 - Fix infinite-join test case (bug #8379)
3458 - Pass correct surface to create_similar in _cairo_clip_init_deep_copy().
3460 PS/PDF fixes
3461 ------------
3462 - Fix Type 1 embedding in PDF.
3463 - Correct the value of /LastChar in the PDF Type 1 font dictionary.
3464 - Improve error checking in TrueType subsetting.
3465 - Compute right index when looking up left side bearing. (bug #8180)
3466 - Correct an unsigned to signed conversion problem in truetype subsetting
3467   bbox.
3468 - Type1 subsetting: Don't put .notdef in Encoding when there are 256 glyphs.
3469 - Add cairo version to PS header / PDF document info dictionary.
3470 - Set CTM before path construction.
3472 Win32 fixes
3473 -----------
3474 - Get correct unhinted outlines on win32. (bug 7603)
3475 - Make cairo as a win32 static library possible.
3476 - Use CAIRO_FORMAT_RGB24 for BITSPIXEL==32 surfaces too.
3478 Build system fixes
3479 ------------------
3480 - Define WINVER if it's not defined. (bug 6456)
3481 - Fix the AMD64 final link by removing SLIM from pixman.
3482 - Misc win32 compilation fixes.
3483 - Add Sun Pro C definition of pixman_private.
3484 - Use pixman_private consistently as prefix not suffix.
3485 - Added three tests check-plt.sh, check-def.sh, and check-header.sh that check
3486   that the shared object, the .def file, and the public headers agree about
3487   the exported symbols.
3488 - Require pkg-config 0.19. (#8686)
3491 Release 1.2.4 (2006-08-18 Carl Worth <cworth@cworth.org>)
3492 =========================================================
3493 This is the second bug fix release in the 1.2 series, coming less than
3494 two weeks after the 1.2.2 release made on August 8.
3496 The big motivation for a quick release was that there were a log of
3497 build system snags that people ran into with the 1.2.2 release. But,
3498 by the time we got those all done, we found that we had a bunch of
3499 fixes for cairo's rendering as well. So there's a lot of goodness in
3500 here for such a short time period.
3502 Rendering fixes
3503 ---------------
3504 Fix image surfaces to not be clipped when used as a source (Vladimir Vukicevic)
3505 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=72e25648c4c4bc82ddd938aa4e05887a293f0d8b
3507 Fix a couple of corner cases in dashing degenerate paths (Jeff Muizelaar)
3508 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=fbb1758ba8384650157b2bbbc93d161b0c2a05f0
3510 Fix support for type1 fonts on win32 (Adrian Johnson)
3511 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=da1019c9138695cb838a54f8b871bbfd0e8996d7
3513 Fix assertion failure when rotating bitmap fonts (Carl Worth)
3514 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=0bfa6d4f33b8ddb5dc55bbe419c15df4af856ff9
3516 Fix assertion failure when calling cairo_text_path with bitmap fonts (Carl Worth)
3517 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=9878a033531e6b96b5f27e69e10e90dee7440cd9
3519 Fix mis-handling of cairo_close_path in some situations (Tim Rowley, Carl Worth)
3520 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=53f74e59faf1af78f2f0741ccf1f23aa5dad4efc
3522 Respect font_matrix translation in _cairo_gstate_glyph_path (Behdad Esfahbod)
3523 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=f183b835b111d23e838889178aa8106ec84663b3
3525 Fix vertical metrics adjustment to work with non-identity shapes (Behdad Esfahbod)
3526 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=b7bc263842a798d657a95e539e1693372448837f
3528 [PS] Set correct ImageMatrix in _cairo_ps_surface_emit_bitmap_glyph_data (Behdad Esfahbod)
3529 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=d47388ad759b0a1a0869655a87d9b5eb6ae2445d
3531 Build system fixes
3532 ------------------
3533 Fix xlib detection to prefer pkg-config to avoid false libXt dependency (Behdad Esfahbod)
3534 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=0e78e7144353703cbd28aae6a67cd9ca261f1d68
3536 Fix typos causing win32 build problem with PS,PDF, and SVG backends (Behdad Esfahbod)
3537 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=aea83b908d020e26732753830bb3056e6702a774
3539 Fix configure cache to not use stale results (Behdad Esfahbod)
3540 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=6d0e3260444a2d5b6fb0cb223ac79f1c0e7b3a6e
3542 Fix to not pass unsupported warning options to the compiler (Jens Granseuer)
3543 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=97524a8fdb899de1ae4a3e920fb7bda6d76c5571
3545 Fix to allow env. variables such as png_REQUIRES to override configure detection (Jens Granseuer)
3546 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=abd16e47d6331bd3811c908e524b4dcb6bd23bf0
3548 Fix test suite to not use an old system cairo when converting svg2png (Behdad Esfahbod)
3549 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=6122cc85c8f71b1ba2df3ab86907768edebe1781
3551 Fix test suite to not require signal.h to be present (Behdad Esfahbod)
3552 http://gitweb.freedesktop.org/?p=cairo;a=commit;h=6f8cf53b1e1ccdbe1ab6a275656b19c6e5120e40
3554 Code cleanups
3555 -------------
3556 Many useful warnings cleanups from sparse, valgrind, and careful eyes
3557 (Kjartan Maraas, Pavel Roskin)
3559 Release 1.2.2 (2006-08-08 Carl Worth <cworth@cworth.org>)
3560 =========================================================
3561 This is the first bug fix release in the 1.2 series since the original
3562 1.2.0 release made six weeks ago.
3564 There were some very serious bugs in the 1.2.0 release, (see below),
3565 so everybody is encouraged to upgrade from 1.2.0 to 1.2.2. The 1.2.2
3566 release maintains source and binary compatibility with 1.2.0 and does
3567 not make any API additions.
3569 Fix crashes with BGR X servers
3570 ------------------------------
3571 With cairo 1.2.0 many people reported problems with all cairo-using
3572 programs, (including all GTK+ programs with GTK+ >= 2.8) immediately
3573 crashing with a complaint about an unsupported image format. This bug
3574 affected X servers that do not provide the Render extension and that
3575 provide a visual with BGR rather than RGB channel order.
3577 report: https://bugs.freedesktop.org/show_bug.cgi?id=7294
3578 fix:    http://gitweb.freedesktop.org/?p=cairo;a=commit;h=9ae66174e774b57f16ad791452ed44efc2770a59
3580 Fix the "disappearing text" bug
3581 -------------------------------
3582 With cairo 1.2.0 many people reported that text would disappear from
3583 applications, sometimes reappearing with mouse motion or
3584 selection. The text would disappear after the first space in a string
3585 of text. This bug was caused by an underlying bug in (very common) X
3586 servers, and only affected text rendered without antialiasing, (either
3587 a bitmap font or a vector font with antialiasing disabled). The bug
3588 was also exacerbated by a KDE migration bug that caused antialiasing
3589 to be disabled more than desired.
3591 report: https://bugs.freedesktop.org/show_bug.cgi?id=7494
3592 fix:    http://gitweb.freedesktop.org/?p=cairo;a=commit;h=456cdb3058f3b416109a9600167cd8842300ae14
3593 see also:
3594 Xorg:   https://bugs.freedesktop.org/show_bug.cgi?id=7681
3595 KDE:    http://qa.mandriva.com/show_bug.cgi?id=23990
3597 Fix broken image fallback scaling (aka. "broken printing")
3598 ----------------------------------------------------------
3599 The various "print" backends, (pdf, ps, and svg), sometimes fallback
3600 to using image-based rendering for some operations. In cairo 1.2.0
3601 these image fallbacks were scaled improperly. Applications using cairo
3602 can influence the resolution of the image fallbacks with
3603 cairo_surface_set_fallback_resolution. With the bug, any value other
3604 than 72.0 would lead to incorrect results, (larger values would lead
3605 to increasingly shrunken output).
3607 report: https://bugs.freedesktop.org/show_bug.cgi?id=7533
3608 fix:    http://gitweb.freedesktop.org/?p=cairo;a=commit;h=1feb4291cf7813494355459bb547eec604c54ffb
3610 Fix inadvertent semantic change of font matrix translation (Behdad Esfahbod)
3611 ----------------------------------------------------------------------------
3612 The 1.2.0 release introduced an inadvertent change to how the
3613 translation components of a font matrix are interpreted. In the 1.0
3614 series, font matrix translation could be used to offset the glyph
3615 origin, (though glyph metrics were reported incorrectly in
3616 1.0). However in 1.2.0, the translation was applied to the advance
3617 values between each glyph. The 1.2.0 behavior is fairly useless in
3618 practice, and it was not intentional to introduce a semantic
3619 change. With 1.2.2 we return to the 1.0 semantics, with a much better
3620 implementation that provides correct glyph metrics.
3622 fix:    http://gitweb.freedesktop.org/?p=cairo;a=commit;h=84840e6bba6e72aa88fad7a0ee929e8955ba9051
3624 Fix create_similar to preserve fallback resolution and font options (Behdad Esfahbod)
3625 -------------------------------------------------------------------------------------
3626 There has been a long-standing issue with cairo_surface_create_similar
3627 such that font options and other settings from the original
3628 destination surface would not be preserved to the intermediate
3629 "similar" surface. This could result in incorrect rendering
3630 (particularly with respect to text hinting/antialiasing) with
3631 fallbacks, for example.
3633 report: https://bugs.freedesktop.org/show_bug.cgi?id=4106
3634 fixes:  http://gitweb.freedesktop.org/?p=cairo;a=commit;h=9fcb3c32c1f16fe6ab913e27eb54d18b7d9a06b0
3635         http://gitweb.freedesktop.org/?p=cairo;a=commit;h=bdb4e1edadb78a2118ff70b28163f8bd4317f1ec
3637 xlib: Fix text performance regression from 1.0 to 1.2.0 (Vladimir Vukicevic)
3638 ----------------------------------------------------------------------------
3639 Several people noticed that upgrading from cairo 1.0 to cairo 1.2.0
3640 caused a significant performance regression when using the xlib
3641 backend. This performance regression was particularly noticeable when
3642 doing lots of text rendering and when using a high-latency connection
3643 to the X server, (such as a remote X server over an ssh
3644 connection). The slowdown was identified and fixed in 1.2.2.
3646 report: https://bugs.freedesktop.org/show_bug.cgi?id=7514
3647 fix:    http://gitweb.freedesktop.org/?p=cairo;a=commit;h=b7191885c88068dad57d68ced69a752d1162b12c
3649 PDF: Eliminate dependency on FreeType library dependency (Adrian Johnson)
3650 -------------------------------------------------------------------------
3651 The cairo 1.2 series adds a supported pdf backend to cairo. In cairo
3652 1.2.0 this backend required the freetype library, which was an
3653 undesirable dependency on systems such as win32, (cairo is designed to
3654 always prefer the "native" font system). As of cairo 1.2.2 the
3655 freetype library is not required to use the pdf backend on the win32
3656 platform.
3658 report: https://bugs.freedesktop.org/show_bug.cgi?id=7538
3659 fix:    http://gitweb.freedesktop.org/?p=cairo;a=commit;h=a0989f427be87c60415963dd6822b3c5c3781691
3661 PDF: Fix broken output on amd64 (Adrian Johnson)
3662 ------------------------------------------------
3663 report: http://bugzilla.gnome.org/show_bug.cgi?id=349826
3664 fix:    http://gitweb.freedesktop.org/?p=cairo;a=commit;h=f4b12e497b7ac282b2f6831b8fb68deebc412e60
3666 PS: Fix broken output for truetype fonts > 64k (Adrian Johnson)
3667 ---------------------------------------------------------------
3668 fix:    http://gitweb.freedesktop.org/?p=cairo;a=commit;h=067d97eb1793a6b0d0dddfbd0b54117844511a94
3670 PDF: Fix so that dashing doesn't get stuck on (Kent Worsnop)
3671 ------------------------------------------------------------
3672 Kent notices that with the PDF backend in cairo 1.2.0 as soon as a
3673 stroke was performed with dashing, all subsequent strokes would also
3674 be dashed. There was no way to turn dashing off again.
3676 fix:    http://gitweb.freedesktop.org/?p=cairo;a=commit;h=778c4730a86296bf0a71080cf7008d7291792256
3678 Fix memory leaks in failure paths in gradient creation (Alfred Peng)
3679 --------------------------------------------------------------------
3680 fix:    http://gitweb.freedesktop.org/?p=cairo;a=commit;h=db06681b487873788b51a6766894fc619eb8d8f2
3682 Fix memory leak in _cairo_surface_show_glyphs (Chris Wilson)
3683 ------------------------------------------------------------
3684 report: https://bugs.freedesktop.org/show_bug.cgi?id=7766
3685 fix:    http://gitweb.freedesktop.org/?p=cairo;a=commit;h=e2fddcccb43d06486d3680a19cfdd5a54963fcbd
3687 Solaris: Add definition of cairo_private for some Sun compilers (Alfred Peng)
3688 -----------------------------------------------------------------------------
3689 report: https://bugzilla.mozilla.org/show_bug.cgi?id=341874
3690 fix:    http://gitweb.freedesktop.org/?p=cairo;a=commit;h=04757a3aa8deeff3265719ebe01b021638990ec6
3692 Solaris: Change version number of Sun's Xorg server with buggy repeat (Brian Cameron)
3693 -------------------------------------------------------------------------------------
3694 report: https://bugs.freedesktop.org/show_bug.cgi?id=7483
3695 fix:    http://gitweb.freedesktop.org/?p=cairo;a=commit;h=e0ad1aa995bcec4246c0b8ab0d5a5a79871ce235
3697 Various memory leak fixes
3698 -------------------------
3699 Fix memory leak in _cairo_surface_show_glyphs (bug 7766)
3700 Fix file handle leak in failure path (bug 7616)
3701 Fix some memory leaks in the test cases.
3702 Fix some memory leaks in font subsetting code used in print backends.
3704 Documentation improvements (Behdad Esfahbod)
3705 --------------------------------------------
3706 Added new documentation for several functions (cairo_show_page,
3707 cairo_copy_page, cairo_in_stroke, cairo_in_fill).
3709 Fixed some syntax errors that were preventing some existing
3710 documentation from being published.
3712 Fixed several minor typographical errors.
3714 Added an index for new symbols in 1.2.
3716 Release 1.2.0 (2006-06-27 Carl Worth <cworth@cworth.org>)
3717 =========================================================
3718 This is the culmination of the work that has gone on within the 1.1
3719 branch of cairo.
3721 There has been one API addition since the cairo 1.1.10 snapshot:
3723         cairo_xlib_surface_get_width
3724         cairo_xlib_surface_get_height
3726 There's also a new feature without any API change:
3728         Dots can now be drawn by using CAIRO_LINE_CAP_ROUND with
3729         degenerate sub-paths, (cairo_move_to() followed by either
3730         cairo_close_path() or a cairo_line_to() to the same location).
3732 And at least the following bugs have been fixed:
3734  6759  fontconfig option AntiAlias doesn't work in cairo 1.1.2
3735  6955  Some characters aren't displayed when using xlib (cache u...
3736  7268  positive device_offset values don't work as source
3737  * PDF emit_glyph function needs to support bitmapped glyphs
3738  * PS emit_glyph function needs to support bitmapped glyphs
3739  * SVG emit_glyph function needs to support bitmapped glyphs
3740  * PDF: minefield page one is falling back unnecessarily
3741  * PS/PDF: Fix broken placement for vertical glyphs
3742  * PS: Fix to not draw BUTT-capped zero-length dash segments
3743  * Do device offset before float->fixed conversion
3744    http://bugzilla.gnome.org/show_bug.cgi?id=332266
3745  * PS: Fix source surfaces with transformations
3746  * PS: Fix to not draw BUTT-capped degnerate sub-paths
3747  * PS: Don't walk off end of array when printing "~>"
3748  * Fix some memory leaks in the test suite rig
3749  * SVG: Fix memory leak when using cairo_mask
3750  * Fix EXTEND_REFLECT and EXTEND_PAD to not crash (though these are
3751    still not yet fully implemented for surface patterns).
3753 This has been a tremendous effort by everyone, and I'm proud to have
3754 been a part of it. Congratulations to all contributors to cairo!
3756 Snapshot 1.1.10 (2006-06-16 Carl Worth <cworth@cworth.org>)
3757 ===========================================================
3758 This is the fifth in a series of snapshots working toward the 1.2
3759 release of cairo.
3761 The primary motivation for this snapshot is to fix a long-standing bug
3762 that had long been silent, but as of the 1.1.8 snapshot started
3763 causing crashes when run against 16-bit depth X servers, (often Xvnc
3764 or Xnest). The fix for this adds a new CAIRO_FORMAT_RGB16_565 to the
3765 API.
3767 This snapshot also includes a rewrite of cairo's SVG backend to
3768 eliminate the dependency on libxml2. With this in place, cairo 1.2
3769 will not depend on any libraries that cairo 1.0 did not.
3771 As usual, there are also a few fixes for minor bugs.
3773 Snapshot 1.1.8 (2006-06-14 Carl Worth <cworth@cworth.org>)
3774 ==========================================================
3775 This is the fourth in a series of snapshots working toward the 1.2
3776 release of cairo. At this point, all major features of the 1.2 release
3777 are in place, leaving just a few bug fixes left.
3779 In particular, there well be no additional API changes between this
3780 1.1.8 snapshot and the 1.2 release.
3782 The announcement for 1.1.6 mentioned several API changes being
3783 considered. Only one of these changes was actually implemented
3784 (set_dpi -> fallback_resolution). This change does introduce one
3785 source-level incompatibility with respect to previous 1.1.x snapshots,
3786 so see below for details.
3788 Here is an abbreviated summary of changes since the 1.1.6 snapshot:
3790 ** API Change **
3791 ----------------
3792 According to the plan mentioned in the 1.1.6 notes, one source-level
3793 incompatible change has been implemented. The following three
3794 functions have been removed from cairo's API:
3796         cairo_pdf_surface_set_dpi
3797         cairo_ps_surface_set_dpi
3798         cairo_svg_surface_set_dpi
3800 and in their place the following function has been added:
3802         cairo_surface_set_fallback_resolution
3804 The signature and semantics of the function remains the same, so it is
3805 a simple matter of changing the name of the function when calling
3806 it. As a transition mechanism, this snapshot will (on many systems)
3807 build to include the old symbols so that code previously compiled will
3808 still run. However, all source code using the old names must be
3809 updated before it will compile. And the upcoming 1.2 release is not
3810 anticipated to include the old symbols.
3812 Finally, it should be pointed out that the old symbols never existed
3813 in the supported API of any stable release of cairo. (In the stable
3814 1.0 releases the PDF, PS, and SVG backends were advertised as
3815 experimental and unstable.)
3817 And, as always, cairo continues to maintain source and binary
3818 compatibility between major releases. So applications compiled against
3819 supported backends in a stable release of cairo (1.0.4 say) will
3820 continue to compile and run without modification against new major
3821 releases (1.2.0 say) without modification.
3823 API additions
3824 -------------
3825 The following new functions have been added to cairo's API:
3827         cairo_surface_get_content
3828         cairo_debug_reset_static_data
3829         cairo_image_surface_get_data
3830         cairo_image_surface_get_format
3831         cairo_image_surface_get_stride
3832         cairo_win32_font_face_create_for_hfont
3834 New, backend-specific pkg-config files
3835 --------------------------------------
3836 In addition to the original cairo.pc file, cairo will also now install
3837 a pkg-config files for each configured backend, (for example
3838 cairo-pdf.pc, cairo-svg.pc, cairo-xlib.pc, cairo-win32.pc, etc.) this
3839 also includes optional font backends (such as cairo-ft.pc) and the
3840 optional png functionality (cairo-png.pc).
3842 These new pkg-config files should be very convenient for allowing
3843 cairo-using code to easily check for the existing of optional
3844 functionality in cairo without having to write complex rules to grub
3845 through cairo header files or the compiled library looking for
3846 symbols.
3848 Printing backend (PS, PDF, and SVG)
3849 -----------------------------------
3850 Improving the quality of the "printing" backends has been a priority
3851 of the development between cairo 1.1.6 and cairo 1.1.8.
3853 The big improvement here is in the area of text output. Previously, at
3854 best, text was output as paths without taking advantage of any font
3855 support available in the output file format.
3857 Now, at the minimum text paths will be shared by using type3 fonts
3858 (for PS and PDF---and similarly, defs for SVG). Also, if possible,
3859 type3 and truetype fonts will be embedded in PostScript and PDF
3860 output. There are still some known bugs with this, (for example,
3861 selecting text in a cairo-generated PDF file with an embedded truetype
3862 font does not work). So there will be some more changes in this area
3863 before cairo 1.2, but do try test this feature out as it exists so
3864 far.
3866 Many thanks to Kristian Høgsberg for the truetype and type1 font
3867 embedding.
3869 win32 backend
3870 -------------
3871 Performance improvements by preferring GDI over pixman rendering when possible.
3872 Fixes for text rendering.
3874 xlib backend
3875 ------------
3876 Fix potentially big performance bug by making xlib's create_similar
3877 try harder to create a pixmap of a depth matching that of the screen.
3879 Bug fixes
3880 ---------
3881 Among various other fixes, the following bugs listed in bugzilla have
3882 been fixed:
3884     Bug 2488: Patch to fix pixman samping location bug (#2488).
3885     https://bugs.freedesktop.org/show_bug.cgi?id=2488
3887     Bug 4196: undef MIN an MAX before defining to avoid duplicate definition
3888     https://bugs.freedesktop.org/show_bug.cgi?id=4196
3890     Bug 4723: configure.in: Fix m4 quoting when examining pkg-config version
3891     https://bugs.freedesktop.org/show_bug.cgi?id=4723
3893     Bug 4882: Flag Sun's X server has having buggy_repeat.
3894     https://bugs.freedesktop.org/show_bug.cgi?id=4882
3896     Bug 5306: test/pdf2png: Add missing include of stdio.h
3897     https://bugs.freedesktop.org/show_bug.cgi?id=5306
3899     Bug 7075: Fix make clean to remove cairo.def
3900     https://bugs.freedesktop.org/show_bug.cgi?id=7075
3902 (Many thanks to Behdad Esfahbod for helping us track down and fix many
3903 of these.)
3905 Snapshot 1.1.6 (2006-05-04 Carl Worth <cworth@cworth.org>)
3906 ==========================================================
3907 This is the third in a series of snapshots working toward the imminent
3908 1.2 release of cairo. For a list of items still needing work on the
3909 cairo 1.2 roadmap, please see:
3911         http://cairographics.org/ROADMAP
3913 As can be seen in that list, there are no longer any API additions
3914 left on the roadmap. Instead, there is a feature (PDF type 3 fonts) a
3915 performance optimization (X server gradients) and a list of bug
3916 fixes. This gives us a fair amount of freedom to cut the 1.2 release
3917 at almost any point by deciding to defer remaining bug fixes to
3918 subsequent maintenance releases such as 1.2.2 and 1.2.4.
3920 Before we will do that, we must first be wiling to commit to all the
3921 new API additions. As a heads-up, there are a couple of potential API
3922 changes being considered. (Note that these are changes to new API
3923 introduced during 1.1 so these will not introduce API
3924 incompatibilities compared to the stable 1.0 series). The changes
3925 being considered are:
3927   cairo_get_group_target: may acquire x and y offset return
3928         parameters. May also be eliminated in favor of
3929         cairo_get_target assuming its role
3931   cairo_pdf_surface_set_dpi:
3932   cairo_ps_surface_set_dpi:
3933   cairo_svg_surface_set_dpi: These functions may be removed in favor
3934         of a new cairo_surface_set_fallback_resolution
3936 Additionally there is the possibility of a slight change in the
3937 semantics of cairo_set_line_width. We believe the current behavior of the sequence:
3939         cairo_set_line_width; ... change CTM ...; cairo_stroke;
3941 is buggy. It is currently behaving the same as:
3943         ... change CTM ...; cairo_set_line_width; cairo_stroke;
3945 We are considering fixing this bug before 1.2 with the hope that
3946 nobody is already relying on the buggy behavior described here. Do
3947 shout if you suspect you might be in that position.
3949 The items included in this snapshot (since the 1.1.4 snapshot) are
3950 described below.
3952 API additions
3953 -------------
3954 The long-awaited group-rendering support is now available with the
3955 following function calls:
3957         cairo_push_group
3958         cairo_push_group_with_content
3959         cairo_pop_group
3960         cairo_pop_group_to_source
3961         cairo_get_group_target
3963 This API provides a much more convenient mechanism for doing rendering
3964 to an intermediate surface without the need to manually create a
3965 temporary cairo_surface_t and a temporary cairo_t and clean them up
3966 afterwards.
3968 Add the following missing get function to complement
3969 cairo_surface_set_device_offset:
3971         cairo_surface_get_device_offset
3973 PDF backend (API addition)
3974 --------------------------
3975 The PDF backend now provides for per-page size changes, (similar to
3976 what the PostScript backend got in the 1.1.4 snapshot). The new API
3979         cairo_pdf_surface_set_size
3981 Xlib backend (API additions)
3982 ----------------------------
3983 The following functions have been added to allow the extraction of
3984 Xlib surface:
3986         cairo_xlib_surface_get_display
3987         cairo_xlib_surface_get_drawable
3988         cairo_xlib_surface_get_screen
3989         cairo_xlib_surface_get_visual
3990         cairo_xlib_surface_get_depth
3992 XCB backend (experimental)
3993 --------------------------
3994 Update backend so that it now compiles with the recent XCB 0.9 release.
3996 Bug fixes and memory leak cleanup
3997 ---------------------------------
3998 Various little things, nothing too significant though.
4000 Snapshot 1.1.4 (2006-05-03 Carl Worth <cworth@cworth.org>)
4001 ==========================================================
4002 This is the second in a series of snapshots working toward the
4003 upcoming 1.2 release of cairo. For a list of items still needing work
4004 on the cairo 1.2 roadmap, please see:
4006         http://cairographics.org/ROADMAP
4008 The items included in this snapshot (since the 1.1.2 snapshot) are
4009 described below.
4011 PostScript backend: new printing-oriented API
4012 ---------------------------------------------
4013 We anticipate that with cairo 1.2, toolkits will begin to use cairo
4014 for printing on systems that use PostScript as the spool format. To
4015 support this use case, we have added 4 new function calls that are
4016 specific to the PostScript backend:
4018         cairo_ps_surface_set_size
4019         cairo_ps_surface_dsc_comment
4020         cairo_ps_surface_dsc_begin_setup
4021         cairo_ps_surface_dsc_begin_page_setup
4023 These functions allow variation of the page size/orientation from one
4024 page to the next in the PostScript output. They also allow the toolkit
4025 to provide per-document and per-page printer control options in a
4026 device-independent way, (for example, by using PPD options and
4027 emitting them as DSC comments into the PostScript output). This should
4028 allow toolkits to provide very fine-grained control of many options
4029 available in printers, (media size, media type, tray selection, etc.).
4031 SVG backend: builds by default, version control
4032 -----------------------------------------------
4033 The SVG backend continues to see major improvements. It is expected
4034 that the SVG backend will be a supported backend in the 1.2
4035 release. This backend will now be built by default if its dependencies
4036 (freetype and libxml2) are met.
4038 Additionally, the SVG backend now has flexibility with regard to what
4039 version of SVG it targets. It will target SVG 1.1 by default, which
4040 will require image fallbacks for some of the "fancier" cairo
4041 compositing operators. Or with the following new function calls:
4043         cairo_svg_surface_restrict_to_version
4044         cairo_svg_get_versions
4045         cairo_svg_version_to_string
4047 it can be made to target SVG 1.2 in which there is native support for
4048 these compositing operators.
4050 Bug fixes
4051 ---------
4052 At least the following bugs have been fixed since the 1.1.2 snapshot:
4054 crash at XRenderAddGlyphs
4055 https://bugs.freedesktop.org/show_bug.cgi?id=4705
4057 Can't build cairo-1.1.2 on opensolaris due to " void function cannot return value"
4058 https://bugs.freedesktop.org/show_bug.cgi?id=6792
4060 Missing out-of-memory check at gfx/cairo/cairo/src/cairo-atsui-font.c:185
4061 https://bugzilla.mozilla.org/show_bug.cgi?id=336129
4063 A couple of memory leaks.
4065 Snapshot 1.1.2 (2006-04-25 Carl Worth <cworth@cworth.org>)
4066 ==========================================================
4067 This is the first in a series of snapshots working toward the upcoming
4068 1.2 release of cairo. (Subsequent snapshot will use successive even
4069 numbers for the third digit, 1.1.4, 1.1.6, etc.) This snapshot is
4070 backwards-compatible with the 1.0 series---it makes a few API
4071 additions but does not remove any API.
4073 PostScript and PDF backends are no longer "experimental"
4074 --------------------------------------------------------
4075 The major theme of the 1.2 release is improved PostScript and PDF
4076 backends for cairo. Unlike the 1.0 series, in the 1.2 series these
4077 backends will not be marked as experimental and will be enabled by
4078 default. We encourage people to test this snapshot and the PS/PDF
4079 backends in particular as much as possible.
4081 The PostScript and PDF output is not yet ideal.
4083  * One major problem with the PostScript output is that image
4084    fallbacks are used more often than strictly necessary, and the
4085    image fallbacks are at a lower resolution than desired, (the
4086    cairo_ps_surface_set_dpi call is ignored).
4088   * The major drawback of the current PDF backend implementation is
4089     its text support. Every glyph is represented by a filled path in
4090     the PDF file. The causes file sizes to be much larger and
4091     rendering to be much slower than desired.
4093 It is anticipated that both of these shortcomings will see some
4094 improvements before the final 1.2 release.
4096 In spite of those shortcomings, we hope that the PS and PDF backends
4097 will yield faithful results for pretty much any cairo operations you
4098 can throw at them. Please let us know if you are getting obviously
4099 "different" results from the PS/PDF backends than from the image or
4100 xlib backends.
4102 Other new experimental backends
4103 -------------------------------
4104 This snapshot includes three new backends that did not exist in the
4105 1.0 series:
4107         * beos backend
4109         * directfb backend
4111         * svg backend
4113 These are all currently marked "experimental" and are disabled by
4114 default. But the SVG backend in particular has seen a lot of recent
4115 development and is very close to passing the entire cairo test
4116 suite. It is possible that this backend will become a fully supported
4117 backend by the time of the cairo 1.2 release.
4119 Public API additions
4120 --------------------
4121 There have been a few new API functions added to cairo, including:
4123 New get_type functions for querying sub-types of object:
4125         cairo_surface_get_type
4126         cairo_pattern_get_type
4127         cairo_font_face_get_type
4128         cairo_scaled_font_get_type
4130 More convenience in working with cairo_scaled_font_t with new getter
4131 functions:
4133         cairo_scaled_font_get_font_face
4134         cairo_scaled_font_get_font_matrix
4135         cairo_scaled_font_get_ctm
4136         cairo_scaled_font_get_font_options
4138 As well as a convenience function for setting a scaled font into a
4139 cairo context:
4141         cairo_set_scaled_font
4143 and a function to allow text extents to be queried directly from a
4144 scaled font, (without requiring a cairo_surface_t or a cairo_t):
4146         cairo_scaled_font_text_extents
4148 These new scaled font functions were motivated by the needs of the
4149 pango library.
4151 Finally, a new path-construction function was added which clears the
4152 current point in preparation for a new sub path. This makes cairo_arc
4153 easier to use in some situations:
4155         cairo_new_sub_path
4157 Before the 1.2 release is final we do still plan a few more API
4158 additions specifically motivated by the needs of Mozilla/Firefox.
4160 Optimizations and bug fixes
4161 ---------------------------
4162 Shortly after the 1.0 maintenance series branched off the mainline
4163 there was a major rework of the cairo font internals. This should
4164 provide some good performance benefits, but it's also another area
4165 people should look at closely for potential regressions.
4167 There has not yet been any widespread, systematic optimization of
4168 cairo, but various performance improvements have been made, (and some
4169 of them are fairly significant). So if some things seem faster than
4170 1.0 then things are good. If there are any performance regressions
4171 compared to 1.0 then there is a real problem and we would like to hear
4172 about that.
4174 There has been a huge number of bug fixes---too many to mention in
4175 detail. Again, things should be better, and never worse compared to
4176 1.0. Please let us know if your testing shows otherwise.
4178 Release 1.0.2 (2005-10-03 Carl Worth <cworth@cworth.org>)
4179 =========================================================
4180 For each bug number XXXX below, see:
4182         https://bugs.freedesktop.org/show_bug.cgi?id=XXXX
4184 for more details.
4186 General bug fixes
4187 -----------------
4188  * 4408 - Add support for dashing of stroked curves
4189           (Carl Worth)
4191  * 4409 - Fix dashing so that each dash is capped on both ends
4192           (Carl Worth)
4194  * 4414 - Prevent SIGILL failures (proper use of -mmmx and -msse flags)
4195           (Sebastien Bacher, Billy Biggs)
4197  * 4299 - Fix crashes with text display in multi-threaded program
4198           (Alexey Shabalin, Carl Worth)
4200  * 4401 - Do not use sincos function since it is buggy on some platforms)
4201           (Tim Mooney, Carl Worth)
4203  * 4245 - Fix several bugs in the test suite exposed by amd64 systems
4204           (Seemant Kulleen, Carl Worth)
4206  * 4321 - Add missing byteswapping on GetImage/PutImage
4207           (Sjoerd Simons, Owen Taylor)
4209  * 4220 - Make the check for rectangular trapezoids simpler and more accurate
4210           (Richard Stellingwerff, Owen Taylor)
4212  * 4260 - Add missing channel-order swapping for antialised fonts
4213           (Barbie LeVile, Owen Taylor)
4215  * 4283 - Fix compilation failure with aggressive inlining (gcc -O3)
4216           (Marco Manfredini, Owen Taylor)
4218  * 4208 - Fix some warnings from sparse
4219           (Kjartan Maraas, Billy Biggs)
4221  * 4269 - Fix to not crash when compiled with -fomit-frame-pointer
4222           (Ronald Wahl, Owen Taylor)
4224  * 4263 - Improve performance for vertical gradients
4225           (Richard Stellingwerff, Owen Taylor)
4227  * 4231
4228  * 4298 - Accomodate gentoo and Mandriva versions in X server vendor string check
4229           (Billy Biggs, Frederic Crozat, Owen Taylor)
4231 win32-specific fixes
4232 --------------------
4233  * 4599 - Fix "missing wedges" on some stroked paths (win32)
4234           (Tim Rowley, Jonathan Watt, Bertram Felgenhauer, Carl Worth, Keith Packard)
4236  * 4612 - Fix disappearing text if first character out of surface (win32)
4237           (Tim Rowley)
4239  * 4602 - Fix shutdown of cairo from failing intermediate, size-0 bitmaps (win32)
4240           Aka. the "white rectangles" bug from mozilla-svg testing
4241           (Tim Rowley)
4243  * Various portability improvements for win32
4244           (Hans Breuer, Owen Taylor, Carl Worth)
4246  * 4593 - Fix font sizes to match user expectations (win32)
4247           (Tor Lillqvist, Owen Taylor)
4249  * 3927 - Fix to report metrics of size 0 for glyph-not-available (win32)
4250           (Hans Breuer, Owen Taylor, Tor Lillqvist)
4252  * Add locking primitives for win32
4253           (Hans Breuer)
4255 xlib-specific fixes
4256 -------------------
4257  * Fix crash from size-0 pixmap due to empty clip region (xlib)
4258           (Radek Doulík, Carl Worth)
4260 Release 1.0.0 (2005-08-24 Carl Worth <cworth@cworth.org>)
4261 =========================================================
4262 Experimental backends
4263 ---------------------
4264  * The Glitz, PS, PDF, Quartz, and XCB backends have been declared
4265    experimental, and are not part of the API guarantees that accompany
4266    this release. They are not built by default, even when the required
4267    libraries are available, and must be enabled explicitly with
4268    --enable-ps, --enable-pdf, --enable-quartz or --enable-xcb.
4270    It is very painful for us to be pushing out a major release without
4271    these backends enabled. There has been a tremendous amount of work
4272    put into each one and all are quite functional to some
4273    extent. However, each also has some limitations. And none of these
4274    backends have been tested to the level of completeness and
4275    correctness that we expect from cairo backends.
4277    We do encourage people to experiment with these backends and report
4278    success, failure, or means of improving them.
4280 Operator behavior
4281 -----------------
4282  * Prior to 0.9.0 the SOURCE, CLEAR and a number of other operators
4283    behaved in an inconsistent and buggy fashion and could affect areas
4284    outside the clip mask. In 0.9.0, these six "unbounded" operators
4285    were fixed to consistently clear areas outside the shape but within
4286    the clip mask.  This is useful behavior for an operator such as IN,
4287    but not what was expected for SOURCE and CLEAR. So, in this release
4288    the behavior of SOURCE and CLEAR has been changed again. They now
4289    affect areas only within both the source and shape. We can write
4290    the new operators as:
4292      SOURCE: dest' = (mask IN clip) ? source : dest
4293      CLEAR:  dest' = (mask IN clip) ? 0 : dest
4295 Behavior and API changes
4296 ------------------------
4297  * Setting the filter on a gradient pattern would change the
4298    interpolation between color stops away from the normal linear
4299    interpolation. This dubious behavior has been removed.
4301  * The CAIRO_CONTENT_VALID() and CAIRO_FORMAT_VALID() macros --
4302    implementation details that leaked into cairo.h -- have been moved
4303    into an internal header.
4305  * The cairo_show_text function now advances the current point
4306    according to the total advance values of the string.
4308 API additions
4309 -------------
4310  * cairo_set_dash can now detect error and can set
4311    CAIRO_STATUS_INVALID_DASH.
4313 Features
4314 --------
4315  * When compiled against recent versions of fontconfig and FreeType,
4316    artificial bold fonts can now be turned on from fonts.conf using
4317    the FC_EMBOLDEN fontconfig key.
4319 Optimization
4320 ------------
4321  * The compositing code from the 'xserver' code tree has now been
4322    completely merged into libpixman. This includes MMX optimization of
4323    common operations.
4325  * The image transformation code in libpixman has been improved and
4326    now performs significantly faster.
4328 Bug fixes
4329 ---------
4330  * Several crashes related to corruption in the font caches have been
4331    fixed.
4333  * All test cases now match pixel-for-pixel on x86 and PPC; this
4334    required fixing bugs in the compositing, stroking, and pattern
4335    rendering code.
4337  * Negative dash offsets have been fixed to work correctly.
4339  * The stroking of paths with mutiple subpaths has now been fixed to
4340    apply caps to all subpaths rather than just the last one.
4342  * Many build fixes for better portability on various systems.
4344  * Lots of other bug fixes, but we're too tired to describe them in
4345    more detail here.
4347 Release 0.9.2 (2005-08-13 Carl Worth <cworth@cworth.org>)
4348 =========================================================
4349 Release numbering
4350 -----------------
4351  * You will notice that this release jumped from 0.9.0 to 0.9.2. We've
4352    decided to use an odd micro version number (eg. 0.9.1) to indicate
4353    in-progress development between releases. As soon as 0.9.2 is
4354    tagged, the version will be incremented in CVS to 0.9.3 where it
4355    will stay until just before 0.9.4 is built, uploaded, and tagged.
4357    So, even-micro == a released version, odd-micro == something in-between.
4359 Libpixman dependency dropped
4360 ----------------------------
4361  * As of this release, the dependency on an external libpixman has
4362    been dropped. Instead, the code from libpixman needed for cairo has
4363    been incorporated into the cairo source tree. The motivation for
4364    this change is that while cairo's API is stable and ready to be
4365    maintained after the 1.0 release, libpixman's API is not, so we do
4366    not want to expose it at this time.
4368    Also, the incorporation of libpixman into cairo also renames all
4369    previously-public libpixman symbols in order to avoid any conflict
4370    with a future release of libpixman
4372 API additions
4373 -------------
4374  * Macros and functions have been added so that the version of cairo
4375    can be queried at either compile-time or at run-time. The version
4376    is made available as both a human-readable string and as a single
4377    integer:
4379         CAIRO_VERSION_STRING               eg. "0.9.2"
4380         CAIRO_VERSION                      eg. 000902
4382         const char*
4383         cairo_version_string (void);    /* eg. "0.9.2" */
4385         int
4386         cairo_version (void);           /* eg. 000902 */
4388    A macro is provided to convert a three-part component version into
4389    the encoded single-integer form:
4391         CAIRO_VERSION_ENCODE(X,Y,Z)
4393    For example, the CAIRO_VERSION value of 000902 is obtained as
4394    CAIRO_VERSION_ENCODE(0,9,2). The intent is to make version
4395    comparisons easy, either at compile-time:
4397         #if CAIRO_VERSION >= CAIRO_VERSION_ENCODE(0,9,2)
4398         ...
4399         #endif
4401    Or at run-time:
4403         if (cairo_version() >= CAIRO_VERSION_ENCODE(0,9,2)) { /* ... */ }
4405 Thread safety
4406 -------------
4407  * This release adds pthread-based locking (when available) to make
4408    the caches used by cairo safe for threaded programs. Some may
4409    remember a failed experiment with this locking between the 0.5.1
4410    and 0.5.2 snapshots, (where even single-threaded programs that
4411    linked with -lpthread would deadlock). We believe that that problem
4412    has been fixed, so we are looking forward to testing and reports
4413    from users with threaded applications.
4415 Bug fixes
4416 ---------
4417  * The XCB and Quartz backends failed to compiled in the 0.9.0 release
4418    due to minor syntax errors. These have now been fixed.
4420  * Various crashes in glitz and pixman due to size 0 glyphs have been
4421    fixed.
4423 Release 0.9.0 (2005-08-08 Carl Worth <cworth@cworth.org>)
4424 =========================================================
4425 Soname change
4426 -------------
4427  * In all prior snapshots, the libtool library versioning was set to
4428    1:0:0. As this release is intended to mark the beginning of
4429    backwards-compatible releases, the versioning has been incremented
4430    to 2:0:0. You will notice that the numeric extension on the
4431    installed library filename will change similarly.
4433    This change will also require all cairo-using applications to be
4434    recompiled. We recognize that this may cause some frustration since
4435    this release is backwards-compatible with 0.6.0 and in that sense
4436    "shouldn't" require re-compilation. However, since all historical
4437    snapshots have used the same 1:0:0 version in spite of incompatible
4438    API changes between them, it was essential that the upcoming 1.0
4439    release series have distinct library versioning.
4441    All future releases will use the library versioning to properly
4442    indicate compatibility between releases. So, any application
4443    re-compiled now to work with the 0.9.0 will not need to be
4444    recompiled when a compatible 1.0 release of cairo is made in the
4445    future.
4447 API additions
4448 -------------
4449  * Add new function calls to set/get the current antialiasing mode in
4450    the graphics state:
4452         cairo_set_antialias
4453         cairo_get_antialias
4455    This call accepts the same modes recently added for font options
4456    (NONE or GRAY) but affects the rendering of geometry other than
4457    text. The intent of this call is to enable more precise control of
4458    which pixels are affected by each operation, for example to allow
4459    for full-scene antialiasing for seam-free rendering. It is not
4460    expected that non-antialiased rendering will perform better than
4461    anti-aliased rendering.
4463  * Three new functions were added to provide support for mixed cairo-
4464    and non-cairo drawing to the same surface:
4466         cairo_surface_mark_dirty
4467         cairo_surface_mark_dirty_rectangle
4468         cairo_surface_flush
4470  * The return type of the several "reference" functions was change,
4471    (API compatibly), from void to the same type as the argument. The
4472    affected functions are:
4474         cairo_font_face_reference
4475         cairo_scaled_font_reference
4476         cairo_pattern_reference
4477         cairo_surface_reference
4478         cairo_reference
4480    This allows a convenient way to assign and reference in a single
4481    statement.
4483 Semantic changes
4484 ----------------
4485  * The behavior of cairo_set_source with a pattern with a non-identity
4486    matrix was previously not well-defined. The new behavior is as
4487    follows:
4489         The pattern's transformation matrix will be locked to the
4490         user space in effect at the time of cairo_set_source(). This means
4491         that further modifications of the CTM will not affect the source
4492         pattern.
4494 cairo-win32
4495 -----------
4496  * Some portability improvements, (eg. workaround for missing stdint.h).
4498 cairo-ft
4499 --------
4500  * Updated to allow compilation with older versions of freetype.
4502 Bug fixes
4503 ---------
4504  * Fix the unbounded operators to actually produce a correct result,
4505    (previously the results were artificially restricted to the
4506    bounding box of whatever shape was being drawn rather than
4507    extending out infinitely). The fixed operators are:
4509         CAIRO_OPERATOR_CLEAR
4510         CAIRO_OPERATOR_SOURCE
4511         CAIRO_OPERATOR_OUT
4512         CAIRO_OPERATOR_IN
4513         CAIRO_OPERATOR_DEST_IN
4514         CAIRO_OPERATOR_DEST_ATOP
4516  * Fix cairo_mask and cairo_mask_surface to transform the mask by the
4517    current transformation matrix (CTM).
4519  * Fix cairo_set_source to lock the CTM used to transform the pattern.
4521  * Workaround for X server Render bug involving repeating patterns
4522    with a general transformation matrix.
4524  * cairo_get_font_face fixed to return a "nil" font face object rather
4525    than NULL on error.
4527  * cairo_set_font_face fixed to not crash if given a NULL font face,
4528    (which is the documented interface for restoring the default font
4529    face).
4531  * Fix xlib glyphset caching to not try to free a NULL glyph.
4533 Snapshot 0.6.0 (2005-07-28 Carl Worth <cworth@cworth.org>)
4534 ==========================================================
4535 API changes
4536 -----------
4537 * The prototypes of the following functions have changed:
4539         cairo_xlib_surface_create_with_xrender_format
4540         cairo_xlib_surface_create_for_bitmap
4542   A Screen* parameter has been added to each. This allows the cairo
4543   xlib backend to work correctly with multi-head X servers.
4545 * The following function has been modified:
4547         cairo_scaled_font_create
4549   to accept a cairo_font_options_t*. See below fore more details.
4551 * All opaque, reference-counted cairo objects have now been moved to a
4552   standard error-handling scheme. The new objects to receive this
4553   treatment are cairo_font_face_t, cairo_scaled_font_t, and
4554   cairo_surface_t. (Previous snapshots already provided this scheme
4555   for cairo_t, cairo_path_t, and cairo_pattern_t.)
4557   This changes two functions to have a return type of void rather than
4558   cairo_status_t:
4560         cairo_scaled_font_extent
4561         cairo_surface_finish
4563   And significantly, none of the create functions for any of the
4564   objects listed above will return NULL. The pointer returned from any
4565   function will now always be a valid pointer and should always be
4566   passed to the corresponding destroy function when finished
4568   The simplest strategy for porting code is to switch from:
4570         object = cairo_<object>_create ();
4571         if (object == NULL)
4572             goto BAILOUT;
4574         /* act on object */
4576         cairo_<object>_destroy (object);
4578   to:
4580         object = cairo_<object>_create ();
4581         if (cairo_<object>_status (object))
4582             goto BAILOUT;
4584         /* act on object */
4586         cairo_<object>_destroy (object);
4588    But significantly, it is not required to check for an error status
4589    before the "act on object" portions of the code above. All
4590    operations on an object with an error status are, by definition,
4591    no-ops without side effect. So new code might be written in an
4592    easier-to-read style of:
4594         object = cairo_<object>_create ();
4596         /* act on object */
4598         cairo_<object>_destroy (object);
4600    with cairo_<object>_status checks placed only at strategic
4601    locations. For example, passing an error object to another object,
4602    (eg. cairo_set_source with an in-error pattern), will propagate the
4603    error to the subsequent object (eg. the cairo_t). This means that
4604    error checking can often be deferred even beyond the destruction of
4605    a temporary object.
4607 API additions
4608 -------------
4609 * New functions for checking the status of objects that have been
4610   switched to the common error-handling scheme:
4612         cairo_font_face_status
4613         cairo_scaled_font_status
4614         cairo_surface_status
4616 * The _cairo_error function which was added in 0.5.1 has now been made
4617   much more useful. In 0.5.1 only errors on cairo_t objects passed
4618   through _cairo_error. Now, an error on any object should pass
4619   through _cairo_error making it much more reliable as a debugging
4620   mechanism for finding when an error first occurs.
4622 * Added new font options support with a myriad of functions:
4624         cairo_font_options_create
4625         cairo_font_options_copy
4626         cairo_font_options_destroy
4628         cairo_font_options_status
4630         cairo_font_options_merge
4631         cairo_font_options_equal
4632         cairo_font_options_hash
4634         cairo_font_options_set_antialias
4635         cairo_font_options_get_antialias
4636         cairo_font_options_set_subpixel_order
4637         cairo_font_options_get_subpixel_order
4638         cairo_font_options_set_hint_style
4639         cairo_font_options_get_hint_style
4640         cairo_font_options_set_hint_metrics
4641         cairo_font_options_get_hint_metrics
4643         cairo_surface_get_font_options
4645         cairo_ft_font_options_substitute
4647         cairo_set_font_options
4648         cairo_get_font_options
4650    This new font options support allows the application to have much
4651    more fine-grained control over how fonts are rendered.
4652    Significantly, it also allows surface backends to have some
4653    influence over the process. For example, the xlib backend now
4654    queries existing Xft properties to set font option defaults.
4656 * New function:
4658         cairo_xlib_surface_set_drawable
4660   which allows the target drawable for an xlib cairo_surface_t to be
4661   changed to another with the same format, screen, and display. This
4662   is necessary in certain double-buffering techniques.
4664 New features
4665 ------------
4666 * Sub-pixel text antialiasing is now supported.
4668 Bug fixes
4669 ---------
4670 * Fixed assertion failure in cairo_surface_create_similar when
4671   application commits an error by passing a cairo_format_t rather than
4672   a cairo_content_t.
4674 * Avoid division by zero in various places (cairo-ft).
4676 * Fix infinite loop when using non-default visuals (cairo-xlib).
4678 * Eliminate segfault in cairo_image_surface_create_from_png_stream.
4680 * Prevent errant sign-extension of masks on 64-bit architectures
4681   (cairo-xlib and cairo-xcb).
4683 * Other miscellaneous fixes.
4685 Snapshot 0.5.2 (2005-07-18 Carl Worth <cworth@cworth.org>)
4686 ==========================================================
4687 API changes
4688 -----------
4689 * New functions for creating patterns of a single color:
4691         cairo_pattern_create_rgb
4692         cairo_pattern_create_rgba
4694 * Change cairo_surface_create_similar to accept a new type of
4695   cairo_content_t rather than cairo_format_t:
4697         typedef enum _cairo_content {
4698             CAIRO_CONTENT_COLOR         = 0x1000,
4699             CAIRO_CONTENT_ALPHA         = 0x2000,
4700             CAIRO_CONTENT_COLOR_ALPHA   = 0x3000
4701         } cairo_content_t;
4703 * Add new CAIRO_FORMAT_VALID and CAIRO_CONTENT_VALID macros.
4705 * Remove unused status value:
4707         CAIRO_STATUS_NO_TARGET_SURFACE
4709 * Add new status values:
4711         CAIRO_STATUS_INVALID_STATUS
4713 * Require libpixman >= 0.1.5 (for necessary bug fixes)
4715 Bug fixes
4716 ---------
4717 * Fix cairo_surface_write_to_png for RGB24 images.
4719 * Fix broken metrics and rendering for bitmap fonts. Add mostly
4720   useless bitmap glyph transformation.
4722 * Fix glyph caches to not eject entries that might be immediately
4723   needed, (fixing intermittent crashes when rendering text).
4725 * Fix all memory leaks found by running "make check-valgrind".
4727 ATSUI backend changes
4728 ---------------------
4729 * Allow building against < 10.3 SDK.
4731 * Prevent crash on empty strings.
4733 Glitz backend changes
4734 ---------------------
4735 * Require glitz >= 0.4.4.
4737 * Use frame buffer objects instead of pbuffers for accelerated
4738   offscreen drawing.
4740 * Minor improvement to gradient pattern creation.
4742 PostScript backend fixes
4743 ------------------------
4744 * Rewrite of the PS backend to generate more interesting output that
4745   the old big-image implementation.
4747 Win32 backend fixes
4748 -------------------
4749 * Implement glyph path support.
4751 * Fix swap of blue and green values in the fill_rectangles path.
4753 Xlib backend fixes
4754 ------------------
4755 * Add optimization to use XCopyArea rather than XRenderComposite when
4756   transforming only with an integer translation, and using SOURCE
4757   operator or OVER with a source pattern without alpha.
4759 Snapshot 0.5.1 (2005-06-20 Carl Worth <cworth@cworth.org>)
4760 ==========================================================
4761 API changes
4762 -----------
4763 * Removed cairo_status_string(cairo_t*) and add
4764   cairo_status_to_string(cairo_status_t) in its place. Code using
4765   cairo_status_string can be ported forward as follows:
4767         cairo_status (cr);
4768         ->
4769         cairo_status_to_string (cairo_status (cr));
4771 * Removed the BAD_NESTING restriction which means that two different
4772   cairo_t objects can now interleave drawing to the same
4773   cairo_surface_t without causing an error.
4775 * The following functions which previously had a return type of
4776   cairo_status_t now have a return type of void:
4778         cairo_pattern_add_color_stop_rgba
4779         cairo_pattern_set_matrix
4780         cairo_pattern_get_matrix
4781         cairo_pattern_set_extend
4782         cairo_pattern_set_filter
4784   See discussion of cairo_pattern_status below for more details.
4786 API additions
4787 -------------
4788 * Improved error handling:
4790         cairo_status_t
4791         cairo_pattern_status (cairo_pattern_t *pattern);
4793   This snapshot expands the status-based error handling scheme from
4794   cairo_t to cairo_path_t and cairo_pattern_t. It also expands the
4795   scheme so that object-creating functions, (cairo_create,
4796   cairo_pattern_create_*, cairo_copy_path_*), are now guaranteed to
4797   not return NULL. Instead, in the case of out-of-memory these
4798   functions will return a static object with
4799   status==CAIRO_STATUS_NO_MEMORY. The status can be checked with the
4800   functions cairo_status and cairo_pattern_status, or by direct
4801   inspection of the new status field in cairo_path_t.
4803   Please note that some objects, including cairo_surface_t and all of
4804   the font-related objects have not been converted to this
4805   error-handling scheme.
4807 * In addition to the above changes, a new private function has been added:
4809         _cairo_error
4811   This function can be used to set a breakpoint in a debugger to make
4812   it easier to find programming error in cairo-using code. (Currently,
4813   _cairo_error is called when any error is detected within a cairo_t
4814   context, but is not called for non-cairo_t errors such as for
4815   cairo_path_t and cairo_pattern_t).
4817 * Fixed cairo_path_data_t so that its enum is visible to C++ code, (as
4818   cairo_path_data_type_t).
4820 Performance improvements
4821 ------------------------
4822 * Made a minor performance improvement for clipping, (restrict clip
4823   surface to the new intersected bounds).
4825 * Optimize rendering of a solid source pattern with a pixel-aligned
4826   rectangular path to use backend clipping rather than rasterization
4827   and backend compositing.
4829 * Optimize cairo_paint_with_alpha to defer to cairo_paint when alpha
4830   is 1.0.
4832 Bug fixes
4833 ---------
4834 * Fixed memory leak in cairo_copy_path.
4836 * A build fix for non-srcdir builds.
4838 PDF backend fixes
4839 -----------------
4840 * New support for path-based clipping.
4842 * Fix for text rotated to angles other than multiples of π/2.
4844 Win32 backend fixes
4845 -------------------
4846 * Fix for text extents.
4848 Xlib backend
4849 ------------
4850 * Implemented a complex workaround for X server bug[*] related to
4851   Render-based compositing with untransformed, repeating source
4852   pictures. The workaround uses core Xlib when possible for
4853   performance, (ie. with CAIRO_OPERATOR_SOURCE or CAIRO_OPERATOR_OVER
4854   with an opaque source surface), and falls back to the pixman
4855   image-based compositing otherwise.
4857   [*] https://bugs.freedesktop.org/show_bug.cgi?id=3566
4859 * Various bug fixes, particularly in the fallback paths.
4861 Snapshot 0.5.0 (2005-05-17 Carl Worth <cworth@cworth.org>)
4862 ==========================================================
4863 This is a pretty big, and fairly significant snapshot.  It represents
4864 between 2 and 3 months of solid work from a lot of people on improving
4865 the API as much as possible. I'd like to express my appreciation and
4866 congratulations to everyone who has worked on the big API Shakeup,
4867 (whether in email battles over names, or fixing my silly bugs).
4869 This snapshot will require some effort on the part of users, since
4870 there are a _lot_ of API changes (ie. no cairo program ever written is
4871 safe --- they're all broken now in at least one way). But, in spite of
4872 that, we do encourage everyone to move their code to this snapshot as
4873 soon as possible. And we're doing everything we can think of to make
4874 the transition as smooth as possible.
4876 The idea behind 0.5 is that we've tried to make every good API change
4877 we could want now, and get them all done with. That is, between now
4878 and the 1.0 release of cairo, we expect very few new API changes,
4879 (though some will certainly sneak in). We will have some significant
4880 additions, but the pain of moving code from cairo 0.4 to cairo 0.5
4881 should be a one time experience, and things should be much smoother as
4882 we continue to move toward cairo 1.0.
4884 And with so many changes coming out for the first time in this 0.5
4885 release, we really do need a lot of people trying this out to make
4886 sure the ideas are solid before we freeze the API in preparation for
4887 the 1.0 release.
4889 OK, enough introduction. Here is a (not-quite-complete) description of
4890 the API removals, changes and additions in this snapshot, (compared to
4891 0.4.0)
4893 API removals
4894 ============
4895 The following public functions have been removed:
4897 - cairo_set_target_*
4899         This is a big change. See the description of cairo_create in
4900         the API changes section for how to deal with this.
4902 - cairo_set_alpha
4904         Alpha blending hasn't gone away; there's just a much more
4905         unified rendering model now. Almost all uses of
4906         cairo_set_alpha will be trivially replaced with
4907         cairo_set_source_rgba and a few others will be replaced just
4908         as easily with cairo_paint_with_alpha.
4910 - cairo_show_surface
4912         Another useful function that we realized was muddling up the
4913         rendering model. The replacement is quite easy:
4914         cairo_set_source_surface and cairo_paint.
4916 - cairo_matrix_create
4917 - cairo_matrix_destroy
4918 - cairo_matrix_copy
4919 - cairo_matrix_get_affine
4921         These functions supported an opaque cairo_matrix_t. We now
4922         have an exposed cairo_matrix_t structure, so these can be
4923         dropped.
4925 - cairo_surface_set_repeat
4926 - cairo_surface_set_matrix
4927 - cairo_surface_set_filter
4929         These properties don't belong on surfaces. If you were using
4930         them, you'll just want to instead use
4931         cairo_pattern_create_for_surface and then set these properties
4932         on the pattern.
4934 - cairo_copy
4936         This was a confusing function and hopefully nobody will miss
4937         it. But if you really don't find cairo_save/restore adequate,
4938         let us know and we have another idea for a potential
4939         replacement.
4941 And while we're on the subject of removals, we carefully tightened up
4942 the cairo header files so they no longer gratuitously include header
4943 files that are not strictly necessary, (stdio.h, stdint.h, pixman.h,
4944 Xrender.h, etc. and their dependencies). This may lead to some
4945 surprising errors, so keep your eyes open for that.
4947 API changes
4948 ===========
4949 Here are some of the API changes that have occurred:
4951 ~ cairo_create(void) -> cairo_create(cairo_surface_t *)
4953         This is the big change that breaks every program. The ability
4954         to re-target a cairo_t was not particularly useful, but it did
4955         introduce a lot of muddy semantic questions. To eliminate
4956         that, cairo_create now requires its target surface to be
4957         passed in at creation time. This isn't too hard to cope with
4958         as the typical first operation after cairo_create was often
4959         cairo_set_target_foo. So the order of those two swap and the
4960         application instead has cairo_foo_surface_create, then
4961         cairo_create.
4963 ~ cairo_current_* -> cairo_get_*
4965         We had a strange mixture of cairo_get and cairo_current
4966         functions. They've all been standardized on cairo_get, (though
4967         note one is cairo_get_current_point).
4969 ~ CAIRO_OPERATOR_SRC -> CAIRO_OPERATOR_SOURCE
4970 ~ CAIRO_OPERATOR_OVER_REVERSE -> CAIRO_OPERATOR_DEST_OVER
4972         Many of the cairo_operator_t symbolic values were renamed to
4973         reduce the amount of abbreviation. The confusing "OP_REVERSE"
4974         naming was also changed to use "DEST_OP" instead which is
4975         easier to read and has wider acceptance in other
4976         libraries/languages.
4978 ~ cairo_set_pattern -> cairo_set_source
4979 ~ cairo_set_rgb_color -> cairo_set_source_rgb
4981         All of the various functions that changed the source
4982         color/pattern were unified to use cairo_set_source names to
4983         make the relation more clear.
4985 ~ cairo_transform_point            -> cairo_user_to_device
4986 ~ cairo_transform_distance         -> cairo_user_to_device_distance
4987 ~ cairo_inverse_transform_point    -> cairo_device_to_user
4988 ~ cairo_inverse_transform_distance -> cairo_device_to_user_distance
4990         These names just seemed a lot more clear.
4992 ~ cairo_init_clip       -> cairo_reset_clip
4993 ~ cairo_concat_matrix   -> cairo_transform
4995         More abbreviation elimination
4997 ~ cairo_current_path      -> cairo_copy_path
4998 ~ cairo_current_path_flat -> cairo_copy_path_flat
5000         The former mechanism for examining the current path was a
5001         function that required 3 or 4 callbacks. This was more
5002         complexity than warranted in most situations. The new
5003         cairo_copy_path function copies the current path into an
5004         exposed data structure, and the documentation provides a
5005         convenient idiom for navigating the path data.
5007 API additions
5008 -------------
5009 + cairo_paint
5011         A generalized version of the painting operators cairo_stroke
5012         and cairo_fill. The cairo_paint call applies the source paint
5013         everywhere within the current clip region. Very useful for
5014         clearing a surface to a solid color, or painting an image,
5015         (see cairo_set_source_surface).
5017 + cairo_paint_with_alpha
5019         Like cairo_paint but applying some alpha to the source,
5020         (making the source paint translucent, eg. to blend an image on
5021         top of another).
5023 + cairo_mask
5025         A more generalized version of cairo_paint_with_alpha which
5026         allows a pattern to specify the amount of translucence at each
5027         point rather than using a constant value everywhere.
5029 + cairo_mask_surface
5031         A convenience function on cairo_mask for when the mask pattern
5032         is already contained within a surface.
5034 + cairo_surface_set_user_data
5035 + cairo_surface_get_user_data
5036 + cairo_font_face_set_user_data
5037 + cairo_font_face_get_user_data
5039         Associate arbitrary data with a surface or font face for later
5040         retrieval. Get notified when a surface or font face object is
5041         destroyed.
5043 + cairo_surface_finish
5045         Allows the user to instruct cairo to finish all of its
5046         operations for a given surface. This provides a safe point for
5047         doing things such as flushing and closing files that the
5048         surface may have had open for writing.
5050 + cairo_fill_preserve
5051 + cairo_stroke_preserve
5052 + cairo_clip_preserve
5054         One interesting change in cairo is that the path is no longer
5055         part of the graphics state managed by
5056         cairo_save/restore. This allows functions to construct paths
5057         without interfering with the graphics state. But it prevents
5058         the traditional idiom for fill-and-stroke:
5060                 cairo_save; cairo_fill; cairo_restore; cairo_stroke
5062         Instead we know have alternate versions cairo cairo_fill,
5063         cairo_stroke, and cairo_clip that preserve the current path
5064         rather than consuming it. So the idiom now becomes simply:
5066                 cairo_fill_preserve; cairo_stroke
5068 + cairo_surface_write_to_png
5069 + cairo_surface_write_to_png_stream
5071         In place of a single PNG backend, now a surface created
5072         through any backend (except PDF currently) can be written out
5073         to a PNG image.
5075 + cairo_image_surface_create_from_png
5076 + cairo_image_surface_create_from_png_stream
5078         And its just as easy to load a PNG image into a surface as well.
5080 + cairo_append_path
5082         With the new, exposed path data structure, it's now possible
5083         to append bulk path data to the current path, (rather than
5084         issuing a long sequence of cairo_move_to/line_to/curve_to
5085         function calls).
5087 Xlib and XCB backends
5088 ---------------------
5090 Any cairo_format_t and Colormap arguments have been dropped from
5091 cairo_xlib_surface_create. There are also two new
5092 cairo_xlib|xcb_surface_create functions:
5094         cairo_xlib|xcb_surface_create_for_bitmap
5095                 (Particular for creating A1 surfaces)
5096         cairo_xlib|xcb_surface_create_with_xrender_format
5097                 (For any other surface types, not described by a Visual*)
5099 All of these surface create functions now accept width and height. In
5100 addition, there are new cairo_xlib|xcb_surface_set_size functions
5101 which must be called each time a window that is underlying a surface
5102 changes size.
5104 Print backends (PS and PDF)
5105 ---------------------------
5106 The old FILE* based interfaces have been eliminated. In their place we
5107 have two different functions. One accepts a simple const char
5108 *filename. The other is a more general function which accepts a
5109 callback write function and a void* closure. This should allow the
5110 flexibility needed to hook up with various stream object in many
5111 languages.
5113 In addition, when specifying the surface size during construction, the
5114 units are now device-space units (ie. points) rather than inches. This
5115 provides consistency with all the other surface types and also makes
5116 it much easier to reason about the size of the surface when drawing to
5117 it with the default identity matrix.
5119 Finally, the DPI parameters, which are only needed to control the
5120 quality of fallbacks, have been made optional. Nothing is required
5121 during surface_create (300 DPI is assumed) and
5122 cairo_ps|pdf_surface_set_dpi can be used to set alternate values if
5123 needed.
5125 Font system
5126 -----------
5127 Owen very graciously listened to feedback after the big font rework he
5128 had done for 0.4, and came up with way to improve it even more. In 0.4
5129 there was a cairo_font_t that was always pre-scaled. Now, there is an
5130 unscaled cairo_font_face_t which is easier to construct, (eg. no
5131 scaling matrix required) and work with, (it can be scaled and
5132 transformed after being set on the graphics state). And the font size
5133 manipulation functions are much easier. You can set an explicit size
5134 and read/modify/write the font matrix with:
5136         cairo_set_font_size
5137         cairo_get_font_matrix
5138         cairo_set_font_matrix
5140 (Previously you could only multiply in a scale factor or a matrix.) A
5141 pleasant side effect is that we can (and do) now have a default font
5142 size that is reasonable, as opposed to the old default height of one
5143 device-space unit which was useless until scaled.
5145 Of course, the old pre-scaled font had allowed some performance
5146 benefits when getting many metrics for a font. Those benefits are
5147 still made available through the new cairo_scaled_font_t. And a
5148 cairo_font_face_t can be "promoted" to a cairo_scaled_font_t by
5149 suppling a font_matrix and the desired CTM.
5151 Quartz backend
5152 --------------
5153 Tim Rowley put in the work to bring the Quartz backend back after it
5154 had been disabled in the 0.4.0 snapshot. He was not able to bring back
5155 the function that allows one to create a cairo_font_t from an ATSUI
5156 style:
5158         cairo_font_t *
5159         cairo_atsui_font_create (ATSUStyle style);
5161 because he didn't have a test case for it. If you care about this
5162 function, please provide a fairly minimal test and we'll try to bring
5163 it back in an upcoming snapshot.
5165 Snapshot 0.4.0 (2005-03-08 Carl Worth <cworth@cworth.org>)
5166 ==========================================================
5167 New documentation
5168 -----------------
5169 Owen Taylor has converted cairo's documentation system to gtk-doc and
5170 has begun some long-needed work on the documentation, which can now be
5171 viewed online here:
5173         http://cairographics.org/manual/
5175 New backend: win32
5176 ------------------
5177 This is the first snapshot to include a functional win32 backend,
5178 (thanks to Owen Taylor). The interface is as follows:
5180         #include <cairo-win32.h>
5182         void
5183         cairo_set_target_win32 (cairo_t *cr,
5184                                 HDC      hdc);
5186         cairo_surface_t *
5187         cairo_win32_surface_create (HDC hdc);
5189         cairo_font_t *
5190         cairo_win32_font_create_for_logfontw (LOGFONTW       *logfont,
5191                                               cairo_matrix_t *scale);
5193         cairo_status_t
5194         cairo_win32_font_select_font (cairo_font_t *font,
5195                                       HDC           hdc);
5197         void
5198         cairo_win32_font_done_font (cairo_font_t *font);
5200         double
5201         cairo_win32_font_get_scale_factor (cairo_font_t *font);
5203 And see also the documentation at:
5205 http://cairographics.org/manual/cairo-Microsoft-Windows-Backend.html
5207 Disabled backend: quartz
5208 ------------------------
5209 Unfortunately, the quartz backend code is currently out of date with
5210 respect to some recent backend interface changes. So, the quartz
5211 backend is disabled in this snapshot.
5213 If the quartz backend is brought up-to-date before the next snapshot,
5214 we would be glad to make a 0.4.1 snapshot that re-enables it, (we do
5215 not expect many more big backend interface changes).
5217 API Changes
5218 -----------
5219 The font system has been revamped, (as Owen Taylor's work with
5220 integrating pango and cairo gave us the first serious usage of the
5221 non-toy font API).
5223 One fundamental, user-visible change is that the cairo_font_t object
5224 now represents a font that is scaled to a particular device
5225 resolution. Further changes are described below.
5227  cairo.h
5228  -------
5229  Removed cairo_font_set_transform and cairo_font_current_transform.
5231  Added cairo_font_extents and cairo_font_glyph_extents. See
5232  documentation for details:
5234  http://cairographics.org/manual/cairo-cairo-t.html#cairo-font-extents
5236  cairo-ft.h
5237  ----------
5238  The cairo_ft_font API changed considerably. Please see the
5239  documentation for details:
5241  http://cairographics.org/manual/cairo-FreeType-Fonts.html
5243 Performance
5244 -----------
5245 Make the fast-path clipping (pixel-aligned rectangles) faster.
5247 Add optimization for applying a constant alpha to a pattern.
5249 Optimize gradients that are horizontal or vertical in device space.
5251 Xlib: When RENDER is not available, use image surfaces for
5252 intermediate surfaces rather than xlib surfaces.
5254 Backend-specific changes
5255 ------------------------
5256  Glitz
5257  -----
5258  Major update to glitz backend. The output quality should now be just
5259  as good as the image and xlib backends.
5261  Track changes to glitz 0.4.0.
5263  PDF
5264  ---
5265  Various improvements to produce more conformant output.
5267 Internals
5268 ---------
5269 David Reveman contributed a large re-work of the cairo_pattern_t
5270 implementation, providing cleaner code and more optimization
5271 opportunities.
5273  Backend interface changes
5274  -------------------------
5275  Rework backend interface to accept patterns, not surfaces for source
5276  and mask.
5278  Remove set_matrix, set_filter, and set_repeat functions.
5280  More sophisticated backend interface for image fallbacks,
5281  ({acquire,release}_{source,dest}_image() and clone_similar).
5283 Bug fixes
5284 ---------
5285 Only install header files for backends that have been compiled.
5287 Fixed some rounding errors leading to incorrectly placed glyphs.
5289 Many other minor fixes.
5291 Snapshot 0.3.0 (2005-01-21 Carl Worth <cworth@cworth.org>)
5292 ==========================================================
5293 Major API changes
5294 -----------------
5295 1) The public header files will no longer be directly installed into
5296    the system include directory. They will now be installed in a
5297    subdirectory named "cairo", (eg. in /usr/include/cairo rather than
5298    in /usr/include).
5300    As always, the easiest way for applications to discover the
5301    location of the header file is to let pkg-config generate the
5302    necessary -I CFLAGS and -L/-l LDFLAGS. For example:
5304         cc `pkg-config --cflags --libs cairo` -o foo foo.c
5306    IMPORTANT: Users with old versions of cairo installed will need to
5307               manually remove cairo.h and cairo-features.h from the
5308               system include directories in order to prevent the old
5309               headers from being used in preference to the new ones.
5311 2) The backend-specific portions of the old monolithic cairo.h have
5312    been split out into individual public header files. The new files
5313    are:
5315         cairo-atsui.h
5316         cairo-ft.h
5317         cairo-glitz.h
5318         cairo-pdf.h
5319         cairo-png.h
5320         cairo-ps.h
5321         cairo-quartz.h
5322         cairo-xcb.h
5323         cairo-xlib.h
5325    Applications will need to be modified to explicitly include the new
5326    header files where appropriate.
5328 3) There are two new graphics backends in this snapshot, a PDF
5329    backend, and a Quartz backend. There is also one new font backend,
5330    ATSUI.
5332 PDF backend
5333 -----------
5334 Kristian Høgsberg has contributed a new backend to allow cairo-based
5335 applications to generate PDF output. The interface for creating a PDF
5336 surface is similar to that of the PS backend, as can be seen in
5337 cairo-pdf.h:
5339         void
5340         cairo_set_target_pdf (cairo_t   *cr,
5341                               FILE      *file,
5342                               double    width_inches,
5343                               double    height_inches,
5344                               double    x_pixels_per_inch,
5345                               double    y_pixels_per_inch);
5347         cairo_surface_t *
5348         cairo_pdf_surface_create (FILE          *file,
5349                                   double        width_inches,
5350                                   double        height_inches,
5351                                   double        x_pixels_per_inch,
5352                                   double        y_pixels_per_inch);
5354 Once a PDF surface has been created, applications can draw to it as
5355 any other cairo surface.
5357 This code is still a bit rough around the edges, and does not yet
5358 support clipping, surface patterns, or transparent gradients.  Text
5359 only works with TrueType fonts at this point and only black text is
5360 supported.  Also, the size of the generated PDF files is currently
5361 quite big.
5363 Kristian is still actively developing this backend, so watch this
5364 space for future progress.
5366 Quartz backend
5367 --------------
5368 Calum Robinson has contributed a new backend to allow cairo
5369 applications to target native Mac OS X windows through the Quartz
5370 API. Geoff Norton integrated this backend into the current
5371 configure-based build system, while Calum also provided Xcode build
5372 support in the separate "macosx" module available in CVS.
5374 The new interface, available in cairo-quartz.h, is as follows:
5376         void
5377         cairo_set_target_quartz_context (cairo_t        *cr,
5378                                          CGContextRef   context,
5379                                          int            width,
5380                                          int            height);
5382         cairo_surface_t *
5383         cairo_quartz_surface_create (CGContextRef context,
5384                                      int          width,
5385                                      int          height);
5387 There is an example program available in CVS in cairo-demo/quartz. It
5388 is a port of Keith Packard's fdclock program originally written for
5389 the xlib backend. A screenshot of this program running on Mac OS X is
5390 available here:
5392         http://cairographics.org/~cworth/images/fdclock-quartz.png
5394 ATSUI font backend
5395 ------------------
5396 This new font backend complements the Quartz backend by allowing
5397 applications to use native font selection on Mac OS X. The interface
5398 is a single new function:
5400         cairo_font_t *
5401         cairo_atsui_font_create (ATSUStyle style);
5403 Minor API changes
5404 -----------------
5405 Prototype for non-existent function "cairo_ft_font_destroy" removed.
5407 Now depends on libpixman 0.1.2 or newer, (0.1.3 is being released
5408 concurrently and has some useful performance improvements).
5410 Default paint color is now opaque black, (was opaque white). Default
5411 background color is transparent (as before).
5413 Renamed "struct cairo" to "struct _cairo" to free up the word "cairo"
5414 from the C++ identifier name space.
5416 Functions returning multiple return values through provided pointers,
5417 (cairo_matrix_get_affine, cairo_current_point, and
5418 cairo_current_color_rgb), will now accept NULL for values the user
5419 wants to ignore.
5421 CAIRO_HAS_FREETYPE_FONT has now been renamed to CAIRO_HAS_FT_FONT.
5423 Performance improvements
5424 ------------------------
5425 Alexander Larsson provided some fantastic performance improvements
5426 yielding a 10000% performance improvement in his application, (when
5427 also including his performance work in libpixman-0.1.3). These include
5429  * Fixed handling of cache misses.
5431  * Creating intermediate clip surfaces at the minimal size required.
5433  * Eliminating roundtrips when creating intermediate Xlib surfaces.
5435 Implementation
5436 --------------
5437 Major re-work of font metrics system by Keith Packard. Font metrics
5438 should now be much more reliable.
5440 Glitz backend
5441 -------------
5442 Updated for glitz-0.3.0.
5443 Bug fixes in reference counting.
5445 Test suite
5446 ----------
5447 New tests for cache crashing, rotating text, improper filling of
5448 complex polygons, and leaky rasterization.
5450 Bug fixes
5451 ---------
5452 Fixed assertion failure when selecting the same font multiple times in
5453 sequence.
5455 Fixed reference counting so cache_destroy functions work.
5457 Remove unintended copyright statement from files generated with
5458 PostScript backend.
5460 Fixed to eliminate new warnings from gcc 3.4 and gcc 4.
5462 Snapshot 0.2.0 (2004-10-27 Carl Worth <cworth@cworth.org>)
5463 ===========================================================
5464 New license: LGPL/MPL
5465 ---------------------
5466 The most significant news with this release is that the license of
5467 cairo has changed. It is now dual-licensed under the LGPL and the
5468 MPL. For details see the COPYING file as well as COPYING-LGPL-2.1 and
5469 COPYING-MPL-1.1.
5471 I express my thanks to everyone involved in the license change process
5472 for their patience and support!
5474 New font and glyph internals
5475 ----------------------------
5476 Graydon Hoare has put a tremendous amount of work into new internals
5477 for handling fonts and glyphs, including caches where appropriate.
5478 This work has no impact on the user-level API, but should result in
5479 great performance improvements for applications using text.
5481 New test suite
5482 --------------
5483 This snapshot of cairo includes a (small) test suite in
5484 cairo/test. The tests can be run with "make check". The test suite was
5485 designed to make it very easy to add new tests, and we hope to see
5486 many contributions here. As you find bugs, please try adding a minimal
5487 test case to the suite, and submit it with the bug report to the
5488 cairo@cairographics.org mailing list. This will make it much easier
5489 for us to track progress in fixing bugs.
5491 New name for glitz backend
5492 --------------------------
5493 The gl backend has now been renamed to the glitz backend. This means
5494 that the following names have changed:
5496         CAIRO_HAS_GL_SURFACE    -> CAIRO_HAS_GLITZ_SURFACE
5497         cairo_set_target_gl     -> cairo_set_target_glitz
5498         cairo_gl_surface_create -> cairo_glitz_surface_create
5500 This change obviously breaks backwards compatibility for applications
5501 using the old gl backend.
5503 Up-to-date with latest glitz snapshots
5504 --------------------------------------
5505 This snapshot of cairo is now up to date with the latest glitz
5506 snapshot, (currently 0.2.3). We know that the latest cairo and glitz
5507 snapshots have been incompatible for a very long time. We've finally
5508 fixed that now and we're determined to not let that happen again.
5510 Revert some tessellation regression bugs
5511 ----------------------------------------
5512 People that have been seeing some tessellation bugs, (eg. leaked
5513 fills), in the CVS version of cairo may have better luck with this
5514 release. A change since the last snapshot was identified to trigger
5515 some of these bugs and was reverted before making the snapshot. The
5516 behavior should be the same as the previous (0.1.23) snapshot.
5518 Miscellaneous changes
5519 ---------------------
5520 Changed CAIRO_FILTER_DEFAULT to CAIRO_FILTER_BEST to make gradients
5521 easier.
5523 Track XCB API change regarding iterators.
5525 Various bug fixes
5526 -----------------
5527 Fix calculation of required number of vertices for pen.
5529 Fix to avoid zero-dimensioned pixmaps.
5531 Fix broken sort of pen vertices.
5533 Fix bug when cairo_show_text called with a NULL string.
5535 Fix clipping bugs.
5537 Fix bug in computing image length with XCB.
5539 Fix infinite loop bug in cairo_arc.
5541 Fix memory management interactions with libpixman.
5543 Snapshot 0.1.23 (2004-05-11 Carl Worth <cworth@isi.edu>)
5544 ========================================================
5545 Fixes for gcc 3.4
5546 -----------------
5547 Fix prototype mismatches so that cairo can be built by gcc 3.4.
5549 Updates to track glitz
5550 ----------------------
5551 Various fixes to support the latest glitz snapshot (0.1.2).
5553 Gradient updates
5554 ----------------
5555 Radial gradients now support both inner and outer circles.
5556 Transformed linear gradients are now properly handled.
5557 Fixes for extend type reflect.
5559 Glitz updates
5560 -------------
5561 Converted shading routines to use fixed point values and introduced a
5562 shading operator structure for more efficient shading calculations.
5563 Support compositing with mask surface when mask is solid or
5564 multi-texturing is available.
5566 PNG backend cleanups
5567 --------------------
5568 Fix output to properly compensate for pre-multiplied alpha format in cairo.
5569 Add support for A8 and A1 image formats.
5571 Bug fixes
5572 ---------
5573 Avoid crash or infinite loop on null strings and degeneratively short
5574 splines.
5576 New? bugs in cairo_clip
5577 -----------------------
5578 There are some fairly serious bugs in cairo_clip. It is sometimes
5579 causing an incorrect result. And even when it does work, it is
5580 sometimes so slow as to be unusable. Some of these bugs may not be
5581 new, (indeed cairo_clip has only ever had a braindead-slow
5582 implementation), but I think they're worth mentioning here.
5584 Snapshot 0.1.22 (2004-04-16 Carl Worth <cworth@isi.edu>)
5585 ========================================================
5586 Cairo was updated to track the changes in libpixman, and now depends
5587 on libpixman version 0.1.1.
5589 Snapshot 0.1.21 (2004-04-09 David Reveman <c99drn@cs.umu.se>)
5590 =============================================================
5591 New OpenGL backend
5592 ------------------
5593 The OpenGL backend provides hardware accelerated output for
5594 X11 and OS X. The significant new functions are:
5596         cairo_set_target_gl
5597         cairo_gl_surface_create
5599 Automatic detection of available backends
5600 -----------------------------------------
5601 The configure script now automatically detect what backends are
5602 available, (use ./configure --disable-`backend' to prevent
5603 compilation of specific backends).
5605 Snapshot 0.1.20 (2004-04-06 Carl Worth <cworth@isi.edu>)
5606 ========================================================
5607 New pattern API
5608 ---------------
5609 David Reveman has contributed a new pattern API which enable linear
5610 and radial gradient patterns in addition to the original surface-based
5611 patterns. The significant new top-level functions are:
5613         cairo_pattern_create_linear
5614         cairo_pattern_create_radial
5615         cairo_pattern_create_for_surface
5616         cairo_pattern_add_color_stop
5617         cairo_set_pattern
5619 Any code using the old cairo_set_pattern, (which accepted a
5620 cairo_surface_t rather than a cairo_pattern_t), will need to be
5621 updated.
5623 Update to XCB backend
5624 ---------------------
5625 The XCB backend is now enabled by default, (use ./configure
5626 --disable-xcb to turn it off).
5628 Faster clipping
5629 ---------------
5630 Graydon Hoare has added optimizations that make cairo_clip much faster
5631 when the path is a pixel-aligned, rectangular region.
5633 Bug fixes.
5635 Snapshot 0.1.19 (2004-02-24 Carl Worth <cworth@isi.edu>)
5636 ========================================================
5637 New PNG backend
5638 ---------------
5639 Olivier Andrieu contributed a new PNG backend. It builds on the
5640 existing image backend to make it easy to render "directly" to a
5641 .png file. The user never needs to deal with the actual image
5642 buffer. The significant new functions are:
5644         cairo_set_target_png
5645         cairo_png_surface_create
5647 The PNG backend is not enabled by default so that by default there is
5648 not a new dependency on libpng. Use ./configure --enable-png to enable
5649 this backend.
5651 Snapshot 0.1.18 (2004-02-17 Carl Worth <cworth@isi.edu>)
5652 ========================================================
5653 Path query functionality
5654 ------------------------
5655 It's now possible to query the current path. The two new functions
5656 are:
5658         cairo_current_path
5659         cairo_current_path_flat
5661 Each function accepts a number of callback functions that will be
5662 called for each element in the path (move_to, line_to, curve_to,
5663 close_path). The cairo_current_path_flat function does not accept a
5664 curve_to callback. Instead, all curved portions of the path will be
5665 converted to line segments, (within the current tolerance value). This
5666 can be handy for doing things like text-on-path without having to
5667 manually interpolate Bézier splines.
5669 New XCB backend
5670 ---------------
5671 Jamey Sharp has contributed a second X backend that uses the new, lean
5672 XCB library rather than Xlib. It cannot currently be compiled at the
5673 same time as the Xlib backend. See ./configure --enable-xcb.
5675 Build fixes for cygwin.
5677 Bug fixes.
5679 Snapshot 0.1.17 (2003-12-16 Carl Worth <cworth@isi.edu>)
5680 ========================================================
5682 Better text support
5683 -------------------
5684 This snapshot provides much better text support by implementing the
5685 following four functions:
5687         cairo_text_extents
5688         cairo_glyph_extents
5689         cairo_text_path
5690         cairo_glyph_path
5692 The text/glyph_extents functions can be used to determine the bounding
5693 box (and advance) for text as if drawn by show_text/glyphs.
5695 The text/glyph_path objects functions place text shapes on the current
5696 path, where they can be subsequently manipulated. For example,
5697 following these functions with cairo_stroke allows outline text to be
5698 drawn. Calling cairo_clip allows clipping to a text-shaped region.
5700 Combined dependencies
5701 ---------------------
5702 The cairo core now depends only on the libpixman library. This single
5703 library replaces the three previous libraries libic, libpixregion, and
5704 slim. Thanks to Dave Beckett <dave.beckett@bristol.ac.uk> for all of
5705 the heavy lifting with this renaming effort.
5707 Conditional compilation of backends
5708 -----------------------------------
5709 Cairo now allows optional backends to be disabled at compile time. The
5710 following options may now be passed to the configure script:
5712         --disable-xlib
5713         --disable-ps
5715 Note that the first option is a change from the old --without-x option
5716 which will no longer have any effect.
5718 OS X supported - several byte-order issues resolved
5719 ---------------------------------------------------
5720 Cairo has now been successfully compiled under OS X. Testing revealed
5721 that there were some byte-order problems in the PostScript backend and
5722 the PNG generation in the demos. These have now been resolved.
5724 2003-10
5725 =======
5726 Graydon Hoare <graydon@redhat.com> implemented the first real text
5727 support using Freetype/fontconfig, (previous versions of cairo used
5728 Xft and could only draw text when using an X backend).
5730 2003-09
5731 =======
5732 Graydon Hoare <graydon@redhat.com> added the first real support for
5733 running cairo with a non-render-aware X server.
5735 Jamey Sharp <jamey@minilop.net> virtualized the backend font and
5736 surface interfaces in September, 2003.
5738 2003-06
5739 =======
5740 Xr is renamed cairo to avoid confusion since it no longer had a strict
5741 dependence on X.
5743 2003-05
5744 =======
5745 A new image surface backend is added to Xr. Keith Packard
5746 <keithp@keithp.com> wrote the image compositing code in libic that is
5747 used for the image_surface backend. This code was originally written
5748 as the software fallback for the render extension within the X
5749 server.
5751 2002-06
5752 =======
5753 Carl Worth <cworth@isi.edu> wrote the first lines of Xr, after Keith
5754 Packard <keithp@keithp.com> proposed the plan for a stateful drawing
5755 library in C providing a PostScript-like rendering model.
5757  LocalWords:  mutex BeOS extraordinaire distro's URL lcd bool tarball