rpms/xorg-x11-server/F-8 xserver-1.3.0-exaupgrade-fix-max-pixmap.patch, 1.1, 1.2

Dave Airlie (airlied) fedora-extras-commits at redhat.com
Wed Apr 30 01:02:17 UTC 2008


Author: airlied

Update of /cvs/pkgs/rpms/xorg-x11-server/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv17455

Modified Files:
	xserver-1.3.0-exaupgrade-fix-max-pixmap.patch 
Log Message:
* Wed Apr 30 2008 Dave Airlie <airlied at redhat.com> 1.3.0.0-45
- fix EXA pixmap maximum size to not fail on 32-bpp * 8192 pixmaps.


xserver-1.3.0-exaupgrade-fix-max-pixmap.patch:

Index: xserver-1.3.0-exaupgrade-fix-max-pixmap.patch
===================================================================
RCS file: /cvs/pkgs/rpms/xorg-x11-server/F-8/xserver-1.3.0-exaupgrade-fix-max-pixmap.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xserver-1.3.0-exaupgrade-fix-max-pixmap.patch	30 Apr 2008 00:54:09 -0000	1.1
+++ xserver-1.3.0-exaupgrade-fix-max-pixmap.patch	30 Apr 2008 01:01:37 -0000	1.2
@@ -5,8 +5,8 @@
  				     pExaScr->info->pixmapPitchAlign);
      pExaPixmap->fb_size = pExaPixmap->fb_pitch * h;
  
--    if (pExaPixmap->fb_pitch > 131071) {
-+    if (pExaPixmap->fb_pitch > 32767) {
+-    if (pExaPixmap->fb_pitch > 32767) {
++    if (pExaPixmap->fb_pitch > 131071) {
  	fbDestroyPixmap(pPixmap);
  	return NULL;
      }




More information about the fedora-extras-commits mailing list