ChangeLog | 20 ++++++++++++++++++++ NEWS | 15 +++++++++++++++ configure.ac | 2 +- debian/changelog | 6 ++++++ src/i965_render.c | 3 +-- 5 files changed, 43 insertions(+), 3 deletions(-)
New commits: commit f1697546699ded4af63dca35b51d3ca408b002d3 Author: Cyril Brulebois <k...@debian.org> Date: Sat Jan 8 18:10:33 2011 +0100 Upload to experimental. diff --git a/debian/changelog b/debian/changelog index 96c1ea4..c48ab8f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,8 @@ -xserver-xorg-video-intel (2:2.14.0-1) UNRELEASED; urgency=low +xserver-xorg-video-intel (2:2.14.0-1) experimental; urgency=low * New upstream release. - -- Cyril Brulebois <k...@debian.org> Sat, 08 Jan 2011 18:10:03 +0100 + -- Cyril Brulebois <k...@debian.org> Sat, 08 Jan 2011 18:10:23 +0100 xserver-xorg-video-intel (2:2.13.903-1) experimental; urgency=low commit 8df7e5963b845e7c5c4f7f2ec7da35d655bae4bb Author: Cyril Brulebois <k...@debian.org> Date: Sat Jan 8 18:10:18 2011 +0100 Bump changelogs. diff --git a/ChangeLog b/ChangeLog index 5fc8a97..25ca9e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,23 @@ +commit 40a7bde9140c0ae6412b8f916b1455d44e2af6cf +Author: Chris Wilson <ch...@chris-wilson.co.uk> +Date: Fri Jan 7 23:46:07 2011 +0000 + + configure: version bump for 2.14.0 + +commit 8ecbba2aca657da3894eb77e856ac2d4e9efc0cc +Author: Chris Wilson <ch...@chris-wilson.co.uk> +Date: Fri Jan 7 23:45:06 2011 +0000 + + NEWS: Release notes for 2.14.0 + +commit 22d7b61791c382088a6c0df5dce3a15405d6c495 +Author: Chris Wilson <ch...@chris-wilson.co.uk> +Date: Tue Jan 4 12:32:01 2011 +0000 + + i965: Fix off-by-one in assert + + Signed-off-by: Chris Wilson <ch...@chris-wilson.co.uk> + commit a7c7a9108f76aa312f3d5efa466052b914c81484 Author: Chris Wilson <ch...@chris-wilson.co.uk> Date: Tue Jan 4 10:53:30 2011 +0000 diff --git a/debian/changelog b/debian/changelog index 8e927f1..96c1ea4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xserver-xorg-video-intel (2:2.14.0-1) UNRELEASED; urgency=low + + * New upstream release. + + -- Cyril Brulebois <k...@debian.org> Sat, 08 Jan 2011 18:10:03 +0100 + xserver-xorg-video-intel (2:2.13.903-1) experimental; urgency=low [ Robert Hooker ] commit 40a7bde9140c0ae6412b8f916b1455d44e2af6cf Author: Chris Wilson <ch...@chris-wilson.co.uk> Date: Fri Jan 7 23:46:07 2011 +0000 configure: version bump for 2.14.0 diff --git a/configure.ac b/configure.ac index 8fcbce3..529a294 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ # Initialize Autoconf AC_PREREQ([2.60]) AC_INIT([xf86-video-intel], - [2.13.903], + [2.14.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [xf86-video-intel]) AC_CONFIG_SRCDIR([Makefile.am]) commit 8ecbba2aca657da3894eb77e856ac2d4e9efc0cc Author: Chris Wilson <ch...@chris-wilson.co.uk> Date: Fri Jan 7 23:45:06 2011 +0000 NEWS: Release notes for 2.14.0 diff --git a/NEWS b/NEWS index 298ce66..4a98c0b 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,18 @@ +Release 2.14.0 (2011-01-07) +=========================== +We are pleased to announce this major release of the xf86-video-intel +driver, on schedule at 3 months since 2.13.0. With the many bug fixes +in this release, we encourage everyone to upgrade to 2.14. + +The most notable feature of this release is the inclusion of acceleration +support, both RENDER and XVIDEO, for Sandy Bridge; note that this requires +a 2.6.37 kernel. In improving the acceleration code paths to support Sandy +Bridge, we were also able to improve the performance of the general i965+ +RENDER acceleration. For example on i3, glyph (aa10 and rgb10) performance +is about 3x faster, as is performing small copies between windows, with the +improvement becoming negligible once you hit around 100 pixels square. + + Snapshot 2.13.903 (2010-01-04) ============================== This is the second release candidate in preparation for the upcoming commit 22d7b61791c382088a6c0df5dce3a15405d6c495 Author: Chris Wilson <ch...@chris-wilson.co.uk> Date: Tue Jan 4 12:32:01 2011 +0000 i965: Fix off-by-one in assert Signed-off-by: Chris Wilson <ch...@chris-wilson.co.uk> diff --git a/src/i965_render.c b/src/i965_render.c index ca5e6b6..b1ac6ba 100644 --- a/src/i965_render.c +++ b/src/i965_render.c @@ -1730,8 +1730,7 @@ static void i965_bind_surfaces(struct intel_screen_private *intel) { uint32_t *binding_table; - assert(intel->surface_used + 4 * sizeof(struct brw_surface_state_padded) < - sizeof(intel->surface_data)); + assert(intel->surface_used + 4 * sizeof(struct brw_surface_state_padded) <= sizeof(intel->surface_data)); binding_table = (uint32_t*) (intel->surface_data + intel->surface_used); intel->surface_table = intel->surface_used; -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1pbcpe-0007ft...@alioth.debian.org