Commit graph

3008 commits

Author SHA1 Message Date
Carl Worth
ebc1cd91f8 Add rotate-image-surface-paint test case
This test exercises a clone_similar extents bug noticed by
Benjamin Otte. As expected, the xlib backend fails due to
that bug, (and interestingly, the ps backend is showing a
failure as well).
2007-01-26 11:43:27 -08:00
Vladimir Vukicevic
691f9d1c0c [mmx] avoid casts between int32 and __m64 types
The MS compiler doesn't like this; _mm_cvtsi32_si64 and _mm_cvtsi64_si32
must be used.
2007-01-25 12:01:50 -08:00
Vladimir Vukicevic
8ff70d6b91 [win32] regression with win32 glyph y-offsets (mozbug#365021) 2007-01-25 12:01:50 -08:00
Vladimir Vukicevic
0231d18a57 [atsui] add function prototype for a public 10.4 function that's 2007-01-25 12:01:50 -08:00
Eugeniy Meshcheryakov
50136a7806 [PDF-CFF] Fix bad /LastChar value for CFF fonts in PDF backend
PDF backend sets /LastChar value in Type1C font dictionary incorrectly.
acroread then complains about incorrect /Widths in font.
The last char is numchars - 1, since it's zero-based.
2007-01-24 15:51:00 -05:00
Michael Emmel
bb02b4e5ec Merge branch 'master' of ssh+git://git.cairographics.org/git/cairo 2007-01-23 22:22:20 -08:00
Michael Emmel
48c2896f69 Turned off acclerated rectangle drawing in dfb backend
causes bugs in gtk
2007-01-23 22:17:24 -08:00
Behdad Esfahbod
3b7751279c [pixman/src/fbmmx.c] Add comment around M64
/* cast to void* in the middle to shut gcc up warning about
 * "dereferencing type-punned pointers".
 */
2007-01-22 14:42:48 -05:00
Brian Ewins
c316b7220d [ATSUI] Some glyph operations cannot be 'unsupported'. (#9530)
The atsui font backend returned the internal 'unsupported' error 
code for errors in operations that do not have fallbacks. Now that 
the underlying cause, deleted glyphs, has been fixed, I'm changing 
the status code returned to the public 'no memory' one; it should 
be the only condition triggering the failure now.
2007-01-22 01:13:50 +00:00
Brian Ewins
49b9f0c082 [ATSUI] out-of-range glyphs should be treated as deleted. (#9530)
Glyphs outside the range 0x0-0xffff are not valid in atsui, but
scaled_glyph stores unsigned long. Ensure that invalid values do
not cause errors.
2007-01-22 01:10:52 +00:00
Brian Ewins
4dfa5d33e4 [ATSUI] Handle deleted glyphs correctly. (#9530)
This code ensures that deleted glyphs are not drawn.
2007-01-22 01:09:49 +00:00
Behdad Esfahbod
1a9d3b5185 [configure.in] Use AC_MSG_RESULT in PKG_CHECK_MODULES's second branch
If PKG_CHECK_MODULES fails, it does not print out any check results and so, no
newlines.  This is kinda silly, at least in the case that no second branch is
provided, but I think that's the way it is, to let users decide what to print.

We now just do a AC_MSG_RESULT(no) and continue with what we used to do.
Inspired by Tor Lillqvist's similar change in Pango.
2007-01-21 15:17:59 -05:00
Behdad Esfahbod
6aa8e80cc7 [pixman/src/fbmmx.c] Hide "dereferencing type-punned pointer" warnings
The warning happens all the place when the code converts from ullong to __m64.
The way the conversion is done is a C idiom: 1) get a pointer to the value, 2)
convert it to the suitable pointer type for the target, 3) dereference it.
That is "*(__m64*)(&m)" in this case.  This is necessarily (as opposed to just
casting to target type) because the two types may not be "compatible" from the
compiler's point of view.  Example of types that are not compatbile is structs
vs anything.

The "dereferencing type-punned pointer will break strict-aliasing rules" from
gcc exactly means: "some code may be assuming that pointers with different
types do not compare equal (or otherwise share the same target object).  If
you case a pointer to a different type and dereference it, it may happen
here."  However, in our usecase, it's clear that the compiler cannot make any
false assumptions.  So we just go ahead and hide it by using a middle cast to
"void *".  Since the compiler does not many any aliasing assumptions about
generic pointers, it will not warn either. (Though the problems if any, will
still occure.  So this is not an ideal solution to this problem and should be
used very carefully, to no hide useful warnings for when things go loose on
some weird architecture.)

Another solution would have been to use gcc's "may_alias" function attribute,
but trying to define a may_alias version of __m64 hit a bug in gcc.  That is,
try replacing "__m64" with "m64" and define:

  typedef __m64 m64 __attribute__((may_alias));

and see it fail to compile.  This seems to be because of the special vector
type that __m64 has.
2007-01-21 15:06:02 -05:00
Behdad Esfahbod
1a8d0a33ce PDF: Fix approximate diagonal in recent commit
Use x+y as an upper bound for sqrt(x*x+y*y), not x*y.
2007-01-20 13:01:35 -05:00
Carl Worth
1e52ce5a09 doc tmpl churn 2007-01-20 03:20:30 -08:00
Carl Worth
53358ddc73 configure.in: Increment version to 1.3.13 after making the 1.3.12 snapshot 2007-01-20 03:20:18 -08:00
Carl Worth
c34a1a75fd configure.in: Increment cairo version to 1.3.12 2007-01-20 03:04:31 -08:00
Carl Worth
26e6c73aab NEWS: Add notes for 1.3.12 snapshot 2007-01-20 03:01:06 -08:00
Carl Worth
87b3ac10af cairo-wideint: Fix to eliminate comparison of signed and unsigned values 2007-01-20 02:01:29 -08:00
Carl Worth
d6bb0d7720 .gitignore: Add text-glyph-range 2007-01-20 01:47:06 -08:00
Carl Worth
b06222b990 ROADMAP: Add 3 bugs to fix before the next snapshot 2007-01-20 00:56:07 -08:00
Carl Worth
6c40575a22 Fix two misspellings in a recent comment. 2007-01-19 23:23:32 -08:00
Carl Worth
5f9d70a561 PDF: Fix CAIRO_EXTEND_NONE for source surface patterns
The former workaround for the lack of non-repeating patterns in PDF
(as far as we can tell) was broken for a source pattern matrix that
resulted in scaling the source surface pattern down. This was
demonstrated by the failure of the scale-down-source-surface-paint
test which now passes.

The old code would have also allowed for bogus repeated pattern
instances to appear if the source surface pattern was translated
sufficiently far off the destination surface in just the right
direction. This bug is also fixed.
2007-01-19 23:11:09 -08:00
Kalle Vahlman
2f6d184e66 Add --use-ms option to cairo-perf-diff-files
This allows for comparing perf files generation on different hardware
platforms, (since the ticks can be very different on different hardware).
2007-01-19 16:47:31 -08:00
M Joonas Pihlaja
8354906381 Make UTF-8 output from cairo-perf-diff-files optional
This patch adds options to disable the UTF-8 change bars and replace
them with ASCII '*' gfx. The motivation is that UTF-8 really does some
damage to some terminals, and some always forget to pipe stuff through
a pager to make it safe. The new options for cairo-perf-diff-files are:

	--no-utf
	--no-bars
2007-01-19 16:47:31 -08:00
Carl Worth
d91d5d12f3 Add new scale-down-source-surface-paint test
This new test case demonstrates a bug in the PDF backend, (source
surface patterns are repeated even with a pattern extend of NONE).

Thanks to Romuald <mydevel@free.fr> and Claudio Saavedra
<csaavedra@alumnos.utalca.cl> for pointing out the bug.
2007-01-19 16:47:31 -08:00
Vladimir Vukicevic
d08502d939 Merge branch 'master' of git+ssh://git.cairographics.org/git/cairo 2007-01-18 16:50:41 -08:00
Vladimir Vukicevic
eefcfbf5a1 [nquartz] add test reference files for nquartz backend 2007-01-18 16:49:42 -08:00
Vladimir Vukicevic
7b67c20a01 [nquartz] use pattern snapshots, and correctly setup/teardown source
Use a snapshot for the pattern, to avoid the pattern being freed undreneath
us before we actually render (as when rendering to a CG PDF context).  Also
correctly return UNSUPPORTED from setup source, avoiding brokenness when
the source isn't torn down correctly.
2007-01-18 16:49:14 -08:00
Carl Worth
28d6a228f0 Fix cairo_get_dash and cairo_get_dash_count APIs
Make these functions consistent with other cairo_get functions
by making cairo_get_dash_count return the count directly, and
removing the cairo_status_t return value from cairo_get_dash.
2007-01-18 13:09:23 -08:00
Carl Worth
bc7072064e cairo-path-fixed: Don't add redundant, succesive MOVE_TO operations to the path
Instead, we can simply tweak the argument value for the last
MOVE_TO operation that's already at the end of the path.

This helps backends like pdf that are currently emitting all
of the redundant MOVE_TO operations in the output.
2007-01-17 16:24:00 -08:00
Vladimir Vukicevic
d9df44d807 Merge branch 'master' of git+ssh://git.cairographics.org/git/cairo 2007-01-17 15:08:21 -08:00
Robert O'Callahan
4e1c2b1ad8 Rename cairo_copy_clip_rectangles to cairo_copy_clip_rectangle_list 2007-01-17 15:07:31 -08:00
Adrian Johnson
b02b86da5c PDF: Compress the content stream
Use cairo-deflate-stream to compress all content streams emitted by the
PDF surface.
2007-01-17 13:21:26 -08:00
Adrian Johnson
7f246462eb Add cairo-deflate-stream.c
Add a new stream type that compresses the stream using the zlib deflate method.
This is intended for use by the PDF surface.
2007-01-17 13:21:03 -08:00
Adrian Johnson
b3440e8530 PDF: Use Td where possible instead of Tm for positioning glyphs
This avoids emitting the font matrix for every single glyph.
2007-01-17 13:20:43 -08:00
Dan Williams
5c2136ea7c Implement pixman fbCompositeSrc_8888x0565mmx
MMX-accelerate for fbCompositeSrc_8888x0565.  Upstream X bug for the
same issue:

http://bugs.freedesktop.org/show_bug.cgi?id=9682
2007-01-17 12:48:51 -08:00
Pavel Roskin
a2ec383ff1 Clean up _fbOnes()
The implementation of _FbOnes in iccolor.c would not work on 64-bit
longs correctly.  Fortunately, it's only used on integers, so make it
explicit in the declaration.

Use an inline function for the gcc builtin implementation to make sure
that it's never used with arguments of incorrect size.

There is no __INT_MIN__ in gcc 4.1.1, but it's not an issue now because
the argument is 32-bit.

Signed-off-by: Pavel Roskin <proski@gnu.org>
2007-01-16 16:38:36 -08:00
Brian Ewins
9e332eadad [test] Test handling of out-of-range glyph indexes. (#9530)
Adds a test for missing and out-of-range glyph indexes. The expected
ATSUI renderings are added as references, please replace these with
FT renderings when they become available.
2007-01-16 01:25:53 +00:00
Behdad Esfahbod
9cabf5b5f7 [TODO] Move some items from ROADMAP, and some new ones, into TODO 2007-01-15 00:26:20 -05:00
Kjartan Maraas
1002d01683 Remove unused variables (#7963) 2007-01-11 17:59:16 -05:00
Behdad Esfahbod
eff6d3c7a0 [cairo-type1-subset] Do not use an array of pointers, to reduce .data size
We use a string pool plus lookup indices tables now, generated by perl code
embedded before the tables.  The table in question is the default PS encoding
table, so no changes are expected in the future.
2007-01-10 16:54:43 -05:00
Soeren Sandmann
cf1d95e714 Add SRC and IN implementations to avoid CompositeGeneral in some cases hit by PDF rendering
The patch implements a few more operations with special cases MMX
code. On my laptop, applying the patch to cairo speeds up the
benchmark (rendering page 14 of a PDF file[*]) from 20.9 seconds
to 14.9 seconds, which is an improvement of 28.6%.

[*] http://people.redhat.com/jakub/prelink.pdf

This also benefits the recently added unaligned_clip perf case:

image-rgb  unaligned_clip-100 0.11 -> 0.06: 1.65x speedup
▋
image-rgba unaligned_clip-100 0.11 -> 0.06: 1.64x speedup
▋
2007-01-09 15:37:26 -08:00
Carl Worth
d5531c4f50 Add unaligned_clip perf case courtesy of Jeff Muizelaar
Conflicts:

	perf/Makefile.am
	perf/cairo-perf.c
	perf/cairo-perf.h
2007-01-09 14:31:22 -08:00
Brian Ewins
504cbdae37 [ATSUI] [2/2] Implement CAIRO_SCALED_GLYPH_INFO_SURFACE support.(#9467)
All non-quartz surfaces need to fall back to using glyph surfaces,
in order to clip correctly. This second patch implements glyph
surface support, correcting the unclipped text seen in the clip-operator
test.
2007-01-08 22:57:02 +00:00
Brian Ewins
77171cb8e2 [ATSUI] [1/2] Implement CAIRO_SCALED_GLYPH_INFO_SURFACE support.(#9467)
All non-quartz surfaces need to fall back to using glyph surfaces,
in order to clip correctly. The bug being fixed is visible in the
clip-operator test. This first patch takes out direct rendering support 
for non-quartz surfaces, causing all image tests to fail.
2007-01-08 22:37:22 +00:00
Jinghua Luo
116ae23fc6 Glitz: position large glyph correctly.
I introduced this bug while fixing test glyph-cache-pressure
(commit 3b1d0d3519). I also changed
GLYPH_CACHE_MAX_HEIGHT and GLYPH_CACHE_MAX_HEIGHT to 96, then we
still can cache at least 28 glyphes per font(512 ^ 2 / 96 ^ 2).
This make us not hit slow path too much and improve performance
a lot.
2007-01-08 16:51:28 +08:00
Brian Ewins
aed4029a10 [ATSUI] Refactor code for creating CGBitmapContexts from cairo surfaces.
No changes to test output. This just prepares code for reuse when 
implementing support for CAIRO_SCALED_GLYPH_INFO_SURFACE.
2007-01-08 01:23:16 +00:00
Brian Ewins
9a005c6221 [ATSUI] correct the rotation of glyph paths. (#9378)
This fixes a bug visible in the text-rotate test when 
CAIRO_TEST_GENERATE_REFERENCE_IMAGE is defined.
2007-01-08 01:07:44 +00:00
Brian Ewins
58265f3508 [ATSUI] Select Bitstream Vera and CSS font families reliably.
Previously the code selected using the family name; this intermittently
selected a bold or italic face instead of the regular one. The new approach
is to select the desired font instance directly if possible, and only use
the family lookup if that fails. This isn't 100% correct but should always
provide the correct font instance for CSS generic font families. The
bug was sometimes reproducible with the select-font-face test.
2007-01-08 00:54:38 +00:00