cairo/pixman
Dave Beckett 05bcf7a4b5 Initial version with the following changes to do the merging:
Change ic.h/pixregion.h headers inclusions to be pixman.h
Removed ic.h, merged into pixman.h
Merged pixregion.h (former name and CVS history of this file) and ic.h (now CVS deleted here).
Updated for libpixregion,libic to libpixman source merges. Added -I$(srcdir) so we get internal headers from here even when srcdir != builddir.
Updated for libpixregion,libic to libpixman package name, dependencies.
Merge of libic, slim AUTHORS, COPYING, README
Initial repository copy of libpixregion, libic, slim CVS.
Constructed a merged ChangeLog below via emacs VC mode (which rocks!)
2003-12-09 16:10:29 +00:00
..
src Change ic.h/pixregion.h headers inclusions to be pixman.h 2003-12-09 16:09:33 +00:00
.cvsignore Initial import of libpixregion 2003-02-25 08:05:26 +00:00
AUTHORS Merge of libic, slim AUTHORS, COPYING, README 2003-12-09 15:59:18 +00:00
autogen.sh Allow names of all autofoo programs to be overridden via environment variables. 2003-12-08 18:07:56 +00:00
ChangeLog Initial version with the following changes to do the merging: 2003-12-09 16:10:29 +00:00
ChangeLog.libic Allow names of all autofoo programs to be overridden via environment variables. 2003-12-08 18:07:56 +00:00
ChangeLog.libpixregion Allow names of all autofoo programs to be overridden via environment variables. 2003-12-08 18:07:56 +00:00
ChangeLog.slim Require __GNUC__ >= 3 before defining slim_hidden_def macro 2003-09-24 06:20:38 +00:00
configure.in Updated for libpixregion,libic to libpixman package name, dependencies. 2003-12-09 16:05:24 +00:00
COPYING Merge of libic, slim AUTHORS, COPYING, README 2003-12-09 15:59:18 +00:00
INSTALL Initial import of libpixregion 2003-02-25 08:05:26 +00:00
libpixman.pc.in Updated for libpixregion,libic to libpixman package name, dependencies. 2003-12-09 16:05:24 +00:00
Makefile.am Updated for libpixregion,libic to libpixman package name, dependencies. 2003-12-09 16:05:24 +00:00
NEWS Initial import of libpixregion 2003-02-25 08:05:26 +00:00
README Merge of libic, slim AUTHORS, COPYING, README 2003-12-09 15:59:18 +00:00

libpixman - Pixel region Library and Image compositing library

libpixman is a merge of libpixregion and libic
and also includes slim

----------------------------------------------------------------------
libpixregion - Pixel region Library

libpixregion is a generic library for manipulating pixel regions. A
PixRegion is a set of Y-X banded rectangles that cover the desired
region.

The original code for libxregion was part of the reference X server
implementation of the X Window System. A modified copy of the code
also exists in the Xlib client library. libpixregion was formed so
that both the X server and client libraries could share common code
for region manipulation.

libpixregion is also intended to be applicable outside of the X Window
System. The public interface of libpixregion does not depend on any
part of the X Window System.

----------------------------------------------------------------------
libic - Image compositing library

libic is a generic image compositing library. libic provides
Porter/Duff compositing of images and implicit mask generation for
geometric primitives including trapezoids, triangles, and rectangles.

The semantics of libic are designed to precisely match the
specification of the X Render extension. In fact, the initial
implementation of libic was lifted from the reference implementation
of RENDER from the X server.

However, libic is intended to be useful independent of the X Window
System. The public interface exported by libic does not contain any
X-specific data structures.

Carl Worth
cworth@isi.edu

Keith Packard (keithp@keithp.com) originally wrote all the original
RENDER code that was yanked out to become libic. Keith also provided
impetus and guidance in the development of libic.

----------------------------------------------------------------------
slim - Shared Library Interface Macros