summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/mga/mgapixel.c
diff options
context:
space:
mode:
authorDave Airlie <airliedfreedesktop.org>2004-05-03 06:54:54 +0000
committerDave Airlie <airliedfreedesktop.org>2004-05-03 06:54:54 +0000
commitaa9767c683b5fc09f58b7b73fa2d8214951e8015 (patch)
treebcc6cf2f71e945df494d4fe69e2ec5994f421d18 /src/mesa/drivers/dri/mga/mgapixel.c
parentf7423f462882ce96725e84cf7f28cee2c45f801b (diff)
get rid of last few XF86DRIClipRect
Diffstat (limited to 'src/mesa/drivers/dri/mga/mgapixel.c')
-rw-r--r--src/mesa/drivers/dri/mga/mgapixel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/mga/mgapixel.c b/src/mesa/drivers/dri/mga/mgapixel.c
index f915d2e08b..4f733adc4a 100644
--- a/src/mesa/drivers/dri/mga/mgapixel.c
+++ b/src/mesa/drivers/dri/mga/mgapixel.c
@@ -324,7 +324,7 @@ mgaTryReadPixels( GLcontext *ctx,
for (i = 0 ; i < nbox ; )
{
int nr = MIN2(i + MGA_NR_SAREA_CLIPRECTS, dPriv->numClipRects);
- XF86DRIClipRectRec *box = dPriv->pClipRects;
+ drm_clip_rect_t *box = dPriv->pClipRects;
drm_clip_rect_t *b = mmesa->sarea->boxes;
int n = 0;
@@ -392,7 +392,7 @@ static void do_draw_pix( GLcontext *ctx,
mgaContextPtr mmesa = MGA_CONTEXT(ctx);
drmMGABlit blit;
__DRIdrawablePrivate *dPriv = mmesa->driDrawable;
- XF86DRIClipRectPtr pbox = dPriv->pClipRects;
+ drm_clip_rect_t pbox = dPriv->pClipRects;
int nbox = dPriv->numClipRects;
int retcode, i;
@@ -425,7 +425,7 @@ static void do_draw_pix( GLcontext *ctx,
for (i = 0 ; i < nbox ; )
{
int nr = MIN2(i + MGA_NR_SAREA_CLIPRECTS, dPriv->numClipRects);
- XF86DRIClipRectRec *box = mmesa->pClipRects;
+ drm_clip_rect_t *box = mmesa->pClipRects;
drm_clip_rect_t *b = mmesa->sarea->boxes;
int n = 0;