diff options
author | Carl Worth <cworth@cworth.org> | 2005-07-28 14:41:36 +0000 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2005-07-28 14:41:36 +0000 |
commit | 6d8d18e2dcdb2c829ec25659c1397f258c6b5a6b (patch) | |
tree | 1bb612fb45b3ddc3c2f9f76c1ad37aae96ffcc03 | |
parent | 61e28ec71f5492671d633ccf9459b6654f33edd6 (diff) |
Add notes for snapshot 0.1.6.SNAPSHOT_0_1_6
Increment version to 0.1.6.
-rw-r--r-- | pixman/ChangeLog | 6 | ||||
-rw-r--r-- | pixman/NEWS | 24 | ||||
-rw-r--r-- | pixman/configure.in | 2 |
3 files changed, 31 insertions, 1 deletions
diff --git a/pixman/ChangeLog b/pixman/ChangeLog index 505188de0..4f481fe9b 100644 --- a/pixman/ChangeLog +++ b/pixman/ChangeLog @@ -1,3 +1,9 @@ +2005-07-28 Carl Worth <cworth@cworth.org> + + * NEWS: Add notes for snapshot 0.1.6. + + * configure.in: Increment version to 0.1.6. + 2005-07-27 Owen Taylor <otaylor@redhat.com> * src/icint.h (FbGetStipPixels): Fix units for stride return diff --git a/pixman/NEWS b/pixman/NEWS index f800d0e26..a52095c63 100644 --- a/pixman/NEWS +++ b/pixman/NEWS @@ -1,3 +1,27 @@ +Snapshot 0.1.6 (2005-07-28 Carl Worth <cworth@cworth.org>) +========================================================== +Behavioral changes +------------------ +Clips are changed to only affect destination operands, not +sources. This gives the desired behavior for cairo. If the X server's +Render implementation wants to use pixman it will have to select +source clipping, (presumably through a new API call that we can add at +that poin). + +Bug fixes +--------- +Fix leak of the clip region associated with an image in +pixman_image_destroy. + +Fix units for stride return to be FbStip-sized, (this bug was causing +non antialiased text in cairo to appear as garbage). + +Other changes +------------- +The implementation has been merged considerably with xserver/fb. Most +of the merge was just name changes, but there were likely some bug +fixes or performance improvements in there as well. + Snapshot 0.1.5 (2005-05-18 Carl Worth <cworth@cworth.org>) ========================================================== Bug fixes diff --git a/pixman/configure.in b/pixman/configure.in index e65a130e6..57757afb6 100644 --- a/pixman/configure.in +++ b/pixman/configure.in @@ -7,7 +7,7 @@ AC_INIT(src/pixman.h) dnl =========================================================================== # Package version number, (as distinct from shared library version) -LIBPIXMAN_VERSION=0.1.5-head +LIBPIXMAN_VERSION=0.1.6 # libtool shared library version |