Commit graph

2343 commits

Author SHA1 Message Date
Jeff Muizelaar
dca93eb76d Fix theoretical NULL return from cairo_pop_group()
This also makes the code more consistent as group_pattern always holds a valid
pattern.
2007-09-12 23:12:59 -04:00
Jonathan Gramain
5eae45c55b [cairo-gstate] Fix order of matrices in _cairo_gstate_backend_to_user_rectangle()
The cairo_matrix_multiply(out,a,b) docs say that it is equivalent to applying
matrix a first, followed by b.  Looking at _cairo_gstate_backend_to_user() we should
apply device_transform_inverse followed by ctm_inverse.  That's what we do now.
2007-09-12 17:45:21 -04:00
Vladimir Vukicevic
9e975757a2 Export cairo_surface_{copy,show}_page
This patch adds cairo_surface_copy_page and cairo_surface_show_page
as public methods, leaving the previous cairo_show_page variants as
shorthands.  copy_page/show_page are specific to the surface, not
to the context, so they need to be surface methods.
2007-09-11 13:30:35 -07:00
Vladimir Vukicevic
7dd05b7f86 [mlk] Free boxes in copy_rectangle_list on success
Fix memory leak when copy_rectangle_list is used.
2007-09-11 11:27:47 -07:00
Adrian Johnson
897350c6c5 PDF: Remove BC entry from Smask dictionary
The BC (background color) in the smask of the recently added
cairo_mask() support was causing Ghostscript to crash due to the wrong
number of BC values. The BC entry has been removed as BC default color
is already what we want.
2007-09-09 19:11:12 +09:30
Adrian Johnson
909e0be241 Add PDF support for cairo_mask() 2007-09-09 11:20:02 +09:30
Chris Wilson
d62f886168 [cairo-ft-font] Early detection of a zero sized bitmap.
Under rare circumstances we may need to extract a surface that
represents a bitmap with width==0 and rows==0. Detect this case at the
start and simply return a zero-sized surface.

Fixes https://bugs.freedesktop.org/show_bug.cgi?id=12284.
2007-09-07 12:40:28 +01:00
Vladimir Vukicevic
d635e01033 Add b8g8r8 formats to cairo-image-surface
Add recognition code for x8b8g8r8 and a8b8g8r8 to cairo-image-surface.
(Used as the default for 24bpp by some older VNC servers.)
2007-09-06 12:56:59 -07:00
Adrian Johnson
1e21220f0e Create meta-surface source image with same content type as the
meta-surface
2007-09-05 22:53:43 +09:30
Adrian Johnson
875e32178e Eliminate unclipped CLEAR from meta-surface playback
The optimization that avoids replaying commands prior to an unclipped
CLEAR operation now starts playback from the first command after the
CLEAR. This avoids the need to handle the unclipped CLEAR in the PDF
surface.
2007-09-05 22:51:13 +09:30
Adrian Johnson
d24f019101 Add support for PDF meta-surface patterns 2007-09-05 22:26:16 +09:30
Behdad Esfahbod
e1819a24fb [cairo-xlib-xrender-private] Remove some protocol-specific macros 2007-09-04 19:12:14 -04:00
Behdad Esfahbod
5e09126ce1 [cairo-xlib-xrender-private] Add copyright/license info for copied files 2007-09-04 18:40:54 -04:00
Behdad Esfahbod
740fed62d2 [xlib] Make it compile without Xrender available at compile time (#12210) 2007-08-31 20:52:43 -04:00
Jody Goldberg
c8ed3e1827 [PDF] The symbol 'GROUP' is already used on some win32 systems; add a prefix 2007-08-31 17:00:36 -04:00
Chris Wilson
c14cf02f61 [cairo-surface] Add a comment about why the glyph array is not const.
As penance for attempting to make the glyph array constant, add a
comment block to explain that the backends rely on being able to modify
the array.
2007-08-31 17:21:02 +01:00
Chris Wilson
e8e3bfc130 Revert "[cairo-gstate] Avoid copying untransformed glyphs."
This reverts commit 919bea6dbb.

Sadly as Behdad points out some backends do modify the glyph array and,
for example cairo-xlib-surface, hide this from the compiler with some
evil casts.
2007-08-31 16:53:21 +01:00
Chris Wilson
919bea6dbb [cairo-gstate] Avoid copying untransformed glyphs.
Skip the memory duplication of the incoming glyphs if we do not need
to transform them into the backend coordinate system.

As a consequence we need to constify the glyphs passed to the backend
functions.
2007-08-31 16:28:06 +01:00
Behdad Esfahbod
62377cbac1 [cairo-path-fixed] Remove leftover typedef keyword
Oops!
2007-08-30 19:45:44 -04:00
Behdad Esfahbod
dd406b1ffa [cairo-path-fixed] typedef char cairo_path_fixed_op_t
So it consumes one byte only, instead of the previous enum with
the __attribute__((packed)) that didn't do anything on non-gcc systems.
2007-08-30 18:45:47 -04:00
Adrian Johnson
f72078fb76 Fix unbounded operator bug in analysis surface 2007-08-29 14:58:48 -07:00
Adrian Johnson
3216275fd9 Fix PDF gradients bug
The PDF surface was adding extra stops at the 0.0 and 1.0 offset when
there was not already stops at these offsets. This has been replaced
with code to move the coordinates of the linear gradient line in to
the position of the first and last offset.
2007-08-29 14:58:36 -07:00
Vladimir Vukicevic
bdc70d1fc2 [win32] call scaled_font_fini in create before returning NULL 2007-08-29 12:52:00 -07:00
Vladimir Vukicevic
93aee43690 Fix previous create_similar fallback patch
We can't use composite, as some backends don't implement it.
Use paint() instead.
2007-08-28 16:47:24 -07:00
Vladimir Vukicevic
6525d4debb [win32] call free() and not scaled_font_destroy() if scaled init fails
If scaled_font_destroy() is called, a deadlock can result; there's no
reason to call destroy since the initialization failed (and, indeed,
it might not be valid to do so anyway).
2007-08-28 10:54:20 -07:00
Vladimir Vukicevic
ae19b1c991 [win32] Add cairo_win32_font_face_create_for_logfontw_hfont
Patch from: Robert O'Callahan <roc@ocallahans.org>

Add cairo_win32_font_face_create_for_logfontw_hfont, allow win32
scaled_fonts to rescale themselves properly to the required CTM and
only use the font_face's hfont if we're sure it's appropriate.
2007-08-28 10:54:20 -07:00
Vladimir Vukicevic
69dae7ee4a Implement fallback for clone_similar 2007-08-28 10:54:19 -07:00
Vladimir Vukicevic
19fa097f51 [win32] Update win32 Makefiles
Happy building with msys, one location for CFLAGS/etc changes (toplevel),
new pdiff makefile.
2007-08-28 10:54:18 -07:00
Vladimir Vukicevic
f4a8633fce [win32] check correct surface for BitBlt support in get_subimage 2007-08-28 10:54:18 -07:00
Vladimir Vukicevic
9aad6efd2b Fix image_extra arg in call to _cairo_release_source_image 2007-08-28 10:54:17 -07:00
Adrian Johnson
766346aa5c PDF: Remove unused code 2007-08-28 20:35:49 +09:30
Adrian Johnson
ad43b7fe6b PDF: Clean up comments 2007-08-28 20:35:23 +09:30
Adrian Johnson
a60beb2eef Fix PDF regression with multipage documents 2007-08-28 20:34:55 +09:30
Adrian Johnson
1cdd11873b Add finer-grained fallback support to the PDF surface
The stream handling has been changed to support writing the content to
one or more group objects. Each page has a top level knockout
group. The first operation in the knockout group paints another group
containing the content. Fallback images are painted from the knockout
group. This ensures that fallback images do not composite with any
content under the image.
2007-08-27 14:21:36 -07:00
Emmanuel Pacaud
5929a1defb [SVG] Suppress code duplication by using _cairo_svg_surface_emit_stroke_style
from _cairo_svg_surface_stroke.
2007-08-25 21:28:33 +02:00
Emmanuel Pacaud
726ed30401 [SVG] Don't emit transform property when matrix is identity. 2007-08-25 20:50:36 +02:00
Emmanuel Pacaud
89881187f2 [SVG] Implement fill_stroke method. 2007-08-25 20:50:20 +02:00
Emmanuel Pacaud
ac51fff0db Add a new fill_stroke surface backend method.
This method is for use in vector backends, where fill immediatly followed by
stroke command with the same path can be emited in the same backend command.
This commit also factorize the detection of such cases in the meta surface
backend and automatically call the fill_stroke method on replay.
2007-08-25 20:49:50 +02:00
Emmanuel Pacaud
43d35e0110 [SVG] fix modeline for vim. 2007-08-25 20:45:16 +02:00
Carl Worth
e3b5a65021 Remove build-breaking debugging helper.
Sorry! Totally my fault on this one.
2007-08-24 08:03:03 -07:00
Carl Worth
177a3b8a32 Remove include of cairoint.h from *-private.h header files.
These were recently added, (as part of sparse integration?), but they
break boilerplate which reaches into at least cairo-types-private.h
and cairo-scaled-font-private.h. But boilerplate cannot see cairoint.h
or else it gets the internal sybol renaming, (with the INT_ prefix),
and then all the test suite tests refuse to link.

If this change reverts some recently-added functionality, (or
cleanliness), then we'll just need to find some other way to add that
back again without the breakage.
2007-08-23 16:13:04 -07:00
Behdad Esfahbod
fa41ebfb7c Fix header inclusion order
Enough for now, until I figure out the right way to break cairoint.h.
2007-08-23 14:00:12 -04:00
Behdad Esfahbod
5594f8b035 [Makefile.am] Run sparse and splint once per source file
Also skip .h files for splint as it causes lots of unused-function warnings.
2007-08-23 14:00:12 -04:00
Chris Wilson
503ab85e44 Fix inadvertent executable mode flip.
Clear the executable bit for cairo-scaled-font.c
2007-08-23 15:01:02 +01:00
Behdad Esfahbod
735757a17a [Makefile.am] Add target sparse to run sparse static source code analyzer
There are still some bits not quite working.
2007-08-22 02:58:37 -04:00
Behdad Esfahbod
bfdc3b6642 [Makefile.am] Move -DHAVE_CONFIG_H to the right place 2007-08-22 01:16:50 -04:00
Behdad Esfahbod
af6a123e95 [Makefile.am] Inhibit unrecognized options to splint 2007-08-22 01:09:21 -04:00
Behdad Esfahbod
e9d709b5ca [cairo-image-surface] Fix comment syntax
Found by splint.
2007-08-22 01:07:59 -04:00
Behdad Esfahbod
ef878345c8 [Makefile.am] Add target splint to run splint static source code analyzer 2007-08-22 01:07:38 -04:00
Behdad Esfahbod
f015091bb5 [Makefile.am] Use libcairo_la_CFLAGS instead of INCLUDES
for clarity.
2007-08-22 01:03:50 -04:00