..
.cvsignore
Bump version to 0.1.15 for new CAIRO_HAS_XLIB_SURFACE macro.
2003-12-05 08:53:07 +00:00
.gitignore
Rename .cvsignore to .gitignore. Add *~ and *.o.
2006-02-21 13:53:57 -08:00
cairo-arc-private.h
Add cairo_private to several function prototypes that were missing it.
2005-08-09 13:01:14 +00:00
cairo-arc.c
correct the calculation of the error bound.
2005-08-22 16:50:30 +00:00
cairo-array.c
Add CAIRO_STATUS_INVALID_CONTENT, CAIRO_STATUS_INVALID_FORMAT, and CAIRO_STATUS_INVALID_VISUAL.
2005-07-27 15:39:34 +00:00
cairo-atsui-font.c
Use C-style comments rather than C++-style in C files
2006-03-04 15:43:15 +01:00
cairo-atsui.h
Add an #error if cairo-foo.h is included when cairo was compiled without support for the foo backend.
2005-05-14 10:03:56 +00:00
cairo-cache.c
Fixes for bug #4110 :
2005-08-17 09:51:09 +00:00
cairo-clip-private.h
Add a new API for disabling antialiasing of shapes drawn by cairo. This is a hint and is not supported by all backends.
2005-08-08 18:35:22 +00:00
cairo-clip.c
cairo-clip: Fix memory leak during OOM handling.
2006-03-13 12:20:55 -08:00
cairo-color.c
Fix conversion to short, to get a uniform range even for 0xffff. In other words, a color component of of (1.0 - epsilon) would convert to 0xffff, not 0xfffe.
2005-08-13 01:04:55 +00:00
cairo-debug.c
New public header file.
2005-08-01 13:33:47 +00:00
cairo-debug.h
New public header file.
2005-08-01 13:33:47 +00:00
cairo-features.h.in
Patch from Behdad Esfahbod <behdad@cs.toronto.edu>:
2005-08-10 11:08:38 +00:00
cairo-fixed.c
Fix for bug #4137 :
2005-08-19 14:37:42 +00:00
cairo-font-options.c
src/cairo.[ch] src/cairo-gstate-private.h src/cairo-gstate.c src/cairoint.c: Add cairo_{get,set}_font_options().
2005-07-25 12:29:23 +00:00
cairo-font-subset-private.h
Split out font subsetting code from here,
2005-06-21 15:38:51 +00:00
cairo-font-subset.c
Patch from Adrian Johnson <ajohnson@redneon.com>
2005-08-04 23:10:26 +00:00
cairo-font.c
Check font_face->status and return a nil scaled font if it is in an error state. (Thanks to Christian Biesinger and sunmoon1997 who pointed this out as part of bug #4674 )
2006-03-15 11:32:41 -05:00
cairo-ft-font.c
Allow _get_bitmap_surface to work for 0x0 glyphs, (fix for bug #5734 ).
2006-03-15 10:15:47 -05:00
cairo-ft-private.h
Add cairo_private to several function prototypes that were missing it.
2005-08-09 13:01:14 +00:00
cairo-ft.h
Whitespace fixes.
2005-07-21 11:26:31 +00:00
cairo-glitz-surface.c
Additional fix for 0-width/0-height glyphs.
2005-08-10 11:40:11 +00:00
cairo-glitz.h
Add an #error if cairo-foo.h is included when cairo was compiled without support for the foo backend.
2005-05-14 10:03:56 +00:00
cairo-gstate-private.h
Add device_x_scale and device_y_scale to surface so that the coordinate system seen by the backend can differ from the nominal device coordinate space used by the application.
2005-08-24 01:39:56 +00:00
cairo-gstate.c
_clip_and_composite_trapezoids: Avoid NULL pointer dereference due to OOM.
2006-03-13 12:30:00 -08:00
cairo-hash-private.h
Remove destroy notifier. This simplifies the implementation a bit, and no anticipated use of cairo_hash_table_t in cairo needs the destroy notifier. Most uses will be hash-backed object create/destroy functions.
2005-07-12 14:43:37 +00:00
cairo-hash.c
Remove destroy notifier. This simplifies the implementation a bit, and no anticipated use of cairo_hash_table_t in cairo needs the destroy notifier. Most uses will be hash-backed object create/destroy functions.
2005-07-12 14:43:37 +00:00
cairo-hull.c
simplify id initialisation of last patch
2005-09-29 20:03:15 +00:00
cairo-image-surface.c
Fix docs not to talk about %NULL returns. #4271 , Duncan Coutts.
2005-08-27 18:40:46 +00:00
cairo-matrix.c
Fix for bug #4401 as reported by Tim Mooney:
2005-09-12 11:11:48 +00:00
cairo-meta-surface-private.h
Add cairo_private to several function prototypes that were missing it.
2005-08-09 13:01:14 +00:00
cairo-meta-surface.c
_cairo_surface_show_glyphs may return UNSUPPORTED in which case a call to scaled_font->backend->show_glyphs is needed.
2005-08-24 01:42:19 +00:00
cairo-output-stream.c
cairo-output-stream: Don't dereference a NULL pointer due to OOM.
2006-03-13 12:07:20 -08:00
cairo-path-bounds.c
Rename cairo_path_real_t to cairo_path_fixed_t and fix all _cairo_path functions to be named as _cairo_path_fixed functions.
2005-03-23 13:52:54 +00:00
cairo-path-data-private.h
Add cairo_private to the few pieces of data that were missing it.
2005-08-10 06:52:40 +00:00
cairo-path-data.c
Update the long description of cairo_matrix_t to match the current sources.
2005-08-23 19:52:09 +00:00
cairo-path-fill.c
New files. Move code for manipulating cairo_clip_t out into cairo_clip_* functions and put them in cairo-clip.c.
2005-08-04 22:45:59 +00:00
cairo-path-fixed-private.h
Clean up names of cairo_path internals.
2005-03-23 14:36:29 +00:00
cairo-path-stroke.c
Note that bug #4409 (Dashes are missing initial caps) is now fixed.
2005-09-27 12:51:00 +00:00
cairo-path.c
Fills as paths patch originally by Owen Taylor.
2005-05-03 14:28:50 +00:00
cairo-pattern.c
Use a 8xN rather than a 1xN strip for a vertical gradient. This is much more tolerant of slow compositing code, and is worth some extra expense computing the gradient. ( #4263 , found in test case from Richard Stellingwerff)
2005-08-30 10:42:17 +00:00
cairo-pdf-surface.c
Ignore really small fonts, since size zero fonts give xpdf fits. ( #2938 )
2005-08-19 14:05:14 +00:00
cairo-pdf.h
Remove destroy_closure from cairo_output_stream_t interface.
2005-05-17 05:58:01 +00:00
cairo-pen.c
use new function. strip comment of derivation for major axis length.
2005-08-22 16:48:28 +00:00
cairo-png.c
Fix for bug #4096 :
2005-08-19 23:05:13 +00:00
cairo-polygon.c
Switch from broken cworth@isi.edu address to canonical cworth@cworth.org address.
2005-02-22 11:35:03 +00:00
cairo-private.h
Rip out cairo_set_error_notfiy function as it is clear that it is not the right approach.
2005-06-20 09:59:23 +00:00
cairo-ps-surface.c
Use new device_x_scale/device_y_scale surface fields to set the device coordinate space to the nominal pixels.
2005-08-24 01:47:13 +00:00
cairo-ps.h
Remove destroy_closure from cairo_output_stream_t interface.
2005-05-17 05:58:01 +00:00
cairo-quartz-surface.c
Use C-style comments rather than C++-style in C files
2006-03-04 15:43:15 +01:00
cairo-quartz.h
Whitespace fixes.
2005-07-21 11:26:31 +00:00
cairo-region.c
src/cairoint.h: Split out a couple of useful utility functions.
2005-08-16 18:22:16 +00:00
cairo-slope.c
Switch from broken cworth@isi.edu address to canonical cworth@cworth.org address.
2005-02-22 11:35:03 +00:00
cairo-spline.c
Add CODING_STYLE document to standardize on some style issues.
2005-06-03 14:51:57 +00:00
cairo-surface.c
Add device_x_scale and device_y_scale to surface so that the coordinate system seen by the backend can differ from the nominal device coordinate space used by the application.
2005-08-24 01:39:56 +00:00
cairo-traps.c
Make the check for rectangular trapezoids simpler and more accurate. ( #4220 , found using test case from Richard Stellingwerff)
2005-08-27 18:54:03 +00:00
cairo-unicode.c
Style and indentation fixes.
2005-04-02 05:18:11 +00:00
cairo-wideint.c
Remove unused RCS $Id:$ tags.
2006-03-15 11:53:59 -05:00
cairo-wideint.h
Remove unused RCS $Id:$ tags.
2006-03-15 11:53:59 -05:00
cairo-win32-font.c
Bug #4612 , reviewed by cworth.
2005-09-28 10:27:39 +00:00
cairo-win32-private.h
WIN32: Define SHADEBLENDCAPS and SB_NONE if they are not defined. (from Tor Lillqvist)
2006-03-15 14:02:14 -05:00
cairo-win32-surface.c
Win32: Handle BitBlt in get_image failure and AlphaBlend not being supported
2006-03-15 11:53:43 -05:00
cairo-win32.h
Add an #error if cairo-foo.h is included when cairo was compiled without support for the foo backend.
2005-05-14 10:03:56 +00:00
cairo-xcb-surface.c
From Travis Spencer <tspencer@cs.pdx.edu>:
2005-08-10 14:30:15 +00:00
cairo-xcb-xrender.h
Update cairo-xcb.h to provide the same style of interface as cairo-xlib.h.
2005-05-17 06:11:32 +00:00
cairo-xcb.h
Re-synch with latest from gtk-doc CVS tree.
2005-05-24 16:08:39 +00:00
cairo-xlib-private.h
src/cairo-xlib-private.h src/cairo-xlib-screen.c: Switch to using Screen * not screen number to match surface code.
2005-07-23 05:37:23 +00:00
cairo-xlib-screen.c
Move comment about missing cleanup of caches on XCloseDisplay from BUGS to a _cairo_xlib_close_display. Also covered in bug #4120 .
2005-08-23 08:21:46 +00:00
cairo-xlib-surface.c
Fix text disappearing after space (bug #6617 )
2006-07-26 13:04:25 -07:00
cairo-xlib-test.h
Fix to include cairo-xlib.h, (which also fixes test/xlib-surface.c).
2005-05-17 00:39:17 +00:00
cairo-xlib-xrender.h
Add Screen* arguments to:
2005-07-20 18:52:31 +00:00
cairo-xlib.h
Add cairo_xlib_surface_set_drawable which changes the target drawable for an xlib cairo_t to another which shares the same format, screen and display.
2005-07-21 08:45:57 +00:00
cairo.c
cairo_show_glyphs: Do nothing if num_glyphs == 0
2006-03-08 08:19:02 -08:00
cairo.h
Minor doc edit.
2005-08-23 23:20:53 +00:00
cairoint.h
Misc compilation fixes (C++-style comments, M_PI decls, etc.)
2006-03-15 11:49:37 -05:00
Makefile.am
Drop PDF and PS backend and FT font API from Win32 DLL entry points for now.
2005-08-24 07:56:45 +00:00