summaryrefslogtreecommitdiff
path: root/fb
diff options
context:
space:
mode:
authorMichel Dänzer <michel@tungstengraphics.com>2007-04-29 23:38:13 +0200
committerMichel Dänzer <michel@tungstengraphics.com>2007-04-29 23:38:13 +0200
commit2866e0bac9b8dd3892c5e68abcfc6c97cebaf88a (patch)
treed3b7935ea499ec2b27855f66d1440eaed0e0c760 /fb
parent78a20455356ccc310f73cfc65ad65a7677eee7e5 (diff)
Fix a couple of picture repeat fields incorrectly compared to RepeatNormal.
Diffstat (limited to 'fb')
-rw-r--r--fb/fbpict.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fb/fbpict.c b/fb/fbpict.c
index 0a08affd7..2c1039834 100644
--- a/fb/fbpict.c
+++ b/fb/fbpict.c
@@ -1495,7 +1495,7 @@ fbComposite (CARD8 op,
{
xMask += pMask->pDrawable->x;
yMask += pMask->pDrawable->y;
- maskRepeat = pMask->repeat == RepeatNormal;
+ maskRepeat = pMask->repeatType == RepeatNormal;
if (pMask->filter == PictFilterConvolution)
maskTransform = TRUE;