2006-04-01 04:36:17 +04:00
|
|
|
Snapshots of cairo and glitz for mozilla usage. A git branch
|
|
|
|
of this version of cairo is available at
|
|
|
|
|
|
|
|
vladimir@git.cairographics.org:~vladimir/cairo
|
|
|
|
|
|
|
|
in the 'mozilla-tree-cairo' branch.
|
2005-02-24 23:11:04 +03:00
|
|
|
|
2005-06-04 11:03:29 +04:00
|
|
|
We only include the relevant parts of each release (generally, src/*.[ch]),
|
|
|
|
as we have Makefile.in's that integrate into the Mozilla build system. For
|
|
|
|
documentation and similar, please see the official tarballs at
|
|
|
|
http://www.cairographics.org/.
|
|
|
|
|
2005-02-24 23:11:04 +03:00
|
|
|
VERSIONS:
|
|
|
|
|
2006-04-01 04:36:17 +04:00
|
|
|
cairo 1.1.1 (cvs - 2006-03-31)
|
2006-01-11 01:56:57 +03:00
|
|
|
glitz 0.5.2 (cvs - 2006-01-10)
|
2005-02-24 23:11:04 +03:00
|
|
|
|
2005-07-04 04:53:23 +04:00
|
|
|
***** NOTE FOR VISUAL C++ 6.0 *****
|
|
|
|
|
2005-10-06 08:02:10 +04:00
|
|
|
VC6 cannot build pixman from cairo. Therefore, VC6 builds are not supported
|
|
|
|
if cairo is enabled. Please upgrade to VC7.1/8.
|
2005-10-31 22:33:05 +03:00
|
|
|
|
2006-01-11 01:56:57 +03:00
|
|
|
==== Patches ====
|
2005-10-31 22:33:05 +03:00
|
|
|
|
2006-04-01 04:36:17 +04:00
|
|
|
[somewhat obsolete, see git repository history for patch info]
|
|
|
|
|
2006-02-23 03:50:08 +03:00
|
|
|
Last update: 23 Feb 2006
|
2006-02-08 04:44:57 +03:00
|
|
|
|
2006-01-11 01:56:57 +03:00
|
|
|
mozilla-misc.patch
|
|
|
|
- Misc compilation fixes for pixman (submitted upstream)
|
|
|
|
- temporary moz_cairo_set_target API (not for upstream)
|
2006-01-19 01:15:25 +03:00
|
|
|
- mac compilation fix for cairo-atsui-font.c for 10.2 SDK (maybe should
|
|
|
|
be upstream?)
|
|
|
|
- cairo-features.h.in - add cairo-platform.h include and hard-code the
|
|
|
|
cairo version (not for upstream)
|
|
|
|
- #if 0'ing out DllMain in win32-surface.c -- not needed, since
|
|
|
|
we don't use cairo multithreaded, and DllMain interferes
|
|
|
|
with libxul's DllMain. (not for usptream)
|
|
|
|
- #if 0'ing out bits to get rid of multithreaded stuff in cairoint.h
|
|
|
|
(not for upstream)
|
2005-10-31 22:33:05 +03:00
|
|
|
|
2006-01-11 01:56:57 +03:00
|
|
|
cairo-debug-helpers.patch
|
|
|
|
- some stuff for cairo-debug.[ch]
|
|
|
|
|
2006-02-08 04:44:57 +03:00
|
|
|
fbcompose-bandaid.patch (Updated 7 Feb 06)
|
|
|
|
- Workaround for https://bugs.freedesktop.org/show_bug.cgi?id=5777
|
|
|
|
|
2006-01-19 01:15:25 +03:00
|
|
|
cairo-win32-clip.patch
|
|
|
|
- Make mark_dirty() reset a surface's clip, so that we can call it
|
|
|
|
when we RestoreDC() after native win32 drawing (submitted upstream)
|
|
|
|
- Rework win32 surface clip and extents handling for correctness
|
|
|
|
(submitted upstream)
|
|
|
|
|
2006-02-11 01:03:39 +03:00
|
|
|
cairo-win32-expose-dc-and-dib.patch (Updated 10 Feb 06)
|
|
|
|
- Expose cairo_win32_surface_create_dib() and add
|
|
|
|
cairo_win32_surface_get_dc() to get at a surface's HDC
|
|
|
|
|
|
|
|
cairo-win32-alphablend.patch (Updated 10 Feb 06)
|
2006-02-08 04:44:57 +03:00
|
|
|
- Use AlphaBlend if the dst surface is either RGB24 or ARGB32, not
|
|
|
|
just RGB24
|
2006-02-11 01:03:39 +03:00
|
|
|
- Removed src->format == dst->format restriction for deciding when
|
|
|
|
to use BitBlt; it's valid for ARGB32->RGB24 and vice-versa with operator
|
|
|
|
SOURCE
|
|
|
|
- Remove RGB24 format check in fast win32-font.c path (we can still use
|
|
|
|
GDI with ARGB32)
|
2006-02-10 05:20:35 +03:00
|
|
|
- Add GdiFlush() calls before each image surface get
|
2006-02-11 01:03:39 +03:00
|
|
|
(Submitted upstream: https://bugs.freedesktop.org/show_bug.cgi?id=5845)
|
2006-02-10 05:20:35 +03:00
|
|
|
|
2006-02-08 04:44:57 +03:00
|
|
|
device-offset-scale.patch (Updated 7 Feb 06)
|
2006-01-11 01:56:57 +03:00
|
|
|
- Move device offset/scale handling into surface layer; large rework
|
|
|
|
of device offset/scale. (submitted upstream)
|
|
|
|
|
2006-02-10 05:20:35 +03:00
|
|
|
push-pop-group.patch (Updated 9 Feb 06)
|
2006-01-11 01:56:57 +03:00
|
|
|
- Implementation of push/pop group API; depends on device-offset-scale.
|
|
|
|
(submitted upstream)
|
2006-02-10 05:20:35 +03:00
|
|
|
- Add push_group_with_content() to select COLOR/COLOR_ALPHA/ALPHA
|
2006-02-16 01:32:14 +03:00
|
|
|
|
|
|
|
cairo-win32-composite-coord.patch
|
|
|
|
- Fix up coordinates before calling BitBlt/AlphaBlend, so that windows
|
|
|
|
doesn't get mad at us if we ask it to blit regions outside of the source
|
|
|
|
DC (NOT SUBMITTED UPSTREAM YET)
|
2006-02-16 01:34:19 +03:00
|
|
|
|
|
|
|
cairo-win32-expose-dc-and-dib.patch
|
|
|
|
- Expose cairo_win32_surface_get_dc() to return the HDC for a win32 surface
|
|
|
|
- Expose cairo_win32_surface_create_dib() for creating a DIB-backed surface
|
|
|
|
(NOT SUBMITTED UPSTREAM YET)
|
2006-02-16 02:33:37 +03:00
|
|
|
|
|
|
|
cairo-win32-creation-format.patch
|
|
|
|
- Have cairo_win32_surface_create inspect the DC and set up the appropriate
|
|
|
|
cairo_format_t
|
2006-02-21 00:08:14 +03:00
|
|
|
|
|
|
|
cairo-xlib-create-similar.patch (Updated 21 Feb 06)
|
|
|
|
- _cairo_xlib_surface_create_similar should not create a 24-bit
|
|
|
|
surface for a 16-bit target; fix it to emulate the target surface
|
2006-02-23 03:50:08 +03:00
|
|
|
as closely as possible (submitted upstream, not accepted yet)
|
|
|
|
|
|
|
|
cairo-xlib-getters.patch (Updated 23 Feb 06)
|
|
|
|
- Add cairo_xlib_get_(display,drawable,screen,visual,depth)
|
|
|
|
(submitted upstream, not accepted yet)
|