From aa9767c683b5fc09f58b7b73fa2d8214951e8015 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Mon, 3 May 2004 06:54:54 +0000 Subject: get rid of last few XF86DRIClipRect --- src/mesa/drivers/dri/mga/mgapixel.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mesa/drivers/dri/mga') 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; -- cgit v1.2.3