xserver: Branch 'master'

Michel Daenzer daenzer at kemper.freedesktop.org
Thu Jul 31 07:56:07 PDT 2008


 exa/exa_accel.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 148175fb8b365dcf00b13539b3f03ce33f3df707
Author: Michel Dänzer <michel at tungstengraphics.com>
Date:   Thu Jul 31 16:54:33 2008 +0200

    EXA: Do still return FALSE if the driver PrepareCopy hook failed...
    
    Thanks to Stuart Bennett for pointing out the problem on IRC.

diff --git a/exa/exa_accel.c b/exa/exa_accel.c
index 277ab1e..48af459 100644
--- a/exa/exa_accel.c
+++ b/exa/exa_accel.c
@@ -1335,6 +1335,8 @@ exaFillRegionTiled (DrawablePtr	pDrawable,
 	    }
 
 	    (*pExaScr->info->DoneCopy) (pPixmap);
+
+	    ret = TRUE;
 	}
 
 	exaMarkSync(pDrawable->pScreen);
@@ -1343,7 +1345,7 @@ exaFillRegionTiled (DrawablePtr	pDrawable,
 	    REGION_TRANSLATE(pScreen, pRegion, -xoff, -yoff);
     }
 
-    return TRUE;
+    return ret;
 }
 
 


More information about the xorg-commit mailing list