xf86-video-ati: Branch 'ati-6.6-branch'

Michel Daenzer daenzer at kemper.freedesktop.org
Sun Oct 22 18:50:05 EEST 2006


 src/radeon_exa_render.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

New commits:
diff-tree e82fa0766a2a7bcf090ad576cf0810c510a2942b (from 7be2dce975d60d68dd962d4928b2971cd9e011af)
Author: Michel Dänzer <michel at tungstengraphics.com>
Date:   Sun Oct 22 17:44:25 2006 +0200

    radeon: Also fall back RENDER repeat for EXA on this branch.

diff --git a/src/radeon_exa_render.c b/src/radeon_exa_render.c
index 98b8dfd..4fc8089 100644
--- a/src/radeon_exa_render.c
+++ b/src/radeon_exa_render.c
@@ -204,8 +204,8 @@ static Bool R100CheckCompositeTexture(Pi
 	RADEON_FALLBACK(("Unsupported picture format 0x%x\n",
 			(int)pPict->format));
 
-    if (pPict->repeat && ((w & (w - 1)) != 0 || (h & (h - 1)) != 0))
-	RADEON_FALLBACK(("NPOT repeat unsupported (%dx%d)\n", w, h));
+    if (pPict->repeat)
+	RADEON_FALLBACK(("Repeat unsupported (%dx%d)\n", w, h));
 
     if (pPict->filter != PictFilterNearest &&
 	pPict->filter != PictFilterBilinear)
@@ -459,8 +459,8 @@ static Bool R200CheckCompositeTexture(Pi
 	RADEON_FALLBACK(("Unsupported picture format 0x%x\n",
 			 (int)pPict->format));
 
-    if (pPict->repeat && ((w & (w - 1)) != 0 || (h & (h - 1)) != 0))
-	RADEON_FALLBACK(("NPOT repeat unsupported (%dx%d)\n", w, h));
+    if (pPict->repeat)
+	RADEON_FALLBACK(("Repeat unsupported (%dx%d)\n", w, h));
 
     if (pPict->filter != PictFilterNearest &&
 	pPict->filter != PictFilterBilinear)



More information about the xorg-commit mailing list