summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/radeon_render.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/radeon_render.c b/src/radeon_render.c
index 0fab39f6..88d4c528 100644
--- a/src/radeon_render.c
+++ b/src/radeon_render.c
@@ -389,6 +389,10 @@ static Bool FUNC_NAME(R100SetupTexture)(
#endif
ACCEL_PREAMBLE();
+ /* render repeat is broken - fix in stable tree by falling back */
+ if (flags & XAA_RENDER_REPEAT)
+ return FALSE;
+
if ((width > 2048) || (height > 2048))
return FALSE;
@@ -721,6 +725,10 @@ static Bool FUNC_NAME(R200SetupTexture)(
#endif
ACCEL_PREAMBLE();
+ /* render repeat is broken - fix in stable tree by falling back */
+ if (flags & XAA_RENDER_REPEAT)
+ return FALSE;
+
if ((width > 2048) || (height > 2048))
return FALSE;