summaryrefslogtreecommitdiff
path: root/src/riva_xaa.c
diff options
context:
space:
mode:
authorAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2004-09-15 16:34:02 +0000
committerAlexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>2004-09-15 16:34:02 +0000
commit11f33224f86463f74822922c33f10207df818986 (patch)
tree07af96549f5041695bb35d2621438a330fe061d7 /src/riva_xaa.c
parentd12cb6d98b8045677d3730d02ebfc1ceace8981f (diff)
Pull XORG-6_8_0 to CYGWIN branchCYGWIN-6_8_1-MERGECYGWIN-6_8_0-MERGE
Diffstat (limited to 'src/riva_xaa.c')
-rw-r--r--src/riva_xaa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/riva_xaa.c b/src/riva_xaa.c
index a7d30a0..2d3fdc6 100644
--- a/src/riva_xaa.c
+++ b/src/riva_xaa.c
@@ -92,7 +92,7 @@ RivaSetRopSolid(RivaPtr pRiva, int rop)
RivaSetPattern(pRiva, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF);
pRiva->currentRop = rop;
RIVA_FIFO_FREE(pRiva->riva, Rop, 1);
- pRiva->riva.Rop->Rop3 = XAACopyROP[rop];
+ pRiva->riva.Rop->Rop3 = XAAGetCopyROP(rop);
}
}
@@ -102,7 +102,7 @@ RivaSetRopPattern(RivaPtr pRiva, int rop)
if (pRiva->currentRop != (rop + 16)) {
pRiva->currentRop = rop + 16; /* +16 is important */
RIVA_FIFO_FREE(pRiva->riva, Rop, 1);
- pRiva->riva.Rop->Rop3 = XAAPatternROP[rop];
+ pRiva->riva.Rop->Rop3 = XAAGetPatternROP(rop);
}
}
@@ -458,7 +458,7 @@ RivaValidatePolyPoint(
unsigned long changes,
DrawablePtr pDraw
){
- pGC->ops->PolyPoint = XAAFallbackOps.PolyPoint;
+ pGC->ops->PolyPoint = XAAGetFallbackOps()->PolyPoint;
if(pGC->planemask != ~0) return;