diff options
author | Jon Smirl <[email protected]> | 2004-03-11 20:35:38 +0000 |
---|---|---|
committer | Jon Smirl <[email protected]> | 2004-03-11 20:35:38 +0000 |
commit | ae4a1cc0666860bf5cc37a5cb549afc9aa5448b0 (patch) | |
tree | 495f1f0249dc177e65f956e16ae79f7ab5a0cb83 /src/glx/mini/dri_util.c | |
parent | 157ec8bcf8b56d7951416d9ee13c98b7e82d099d (diff) |
Adjustments to make everything use IOCTL/sarea defines in DRM instead
of glx/mini. removes glx/mini/drm.h glx/mini/sarea.h
Diffstat (limited to 'src/glx/mini/dri_util.c')
-rw-r--r-- | src/glx/mini/dri_util.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/glx/mini/dri_util.c b/src/glx/mini/dri_util.c index 6d79d2037c0..23b9b9d5fbe 100644 --- a/src/glx/mini/dri_util.c +++ b/src/glx/mini/dri_util.c @@ -28,7 +28,6 @@ #include <sys/mman.h> #include <sys/shm.h> -#include "sarea.h" #include "dri_util.h" /** @@ -270,7 +269,7 @@ static void *driCreateDrawable(__DRIscreen *screen, pdp->w = width; pdp->h = height; pdp->numClipRects = 0; - pdp->pClipRects = (XF86DRIClipRectPtr) malloc(sizeof(XF86DRIClipRectRec)); + pdp->pClipRects = (drm_clip_rect_t *) malloc(sizeof(drm_clip_rect_t)); (pdp->pClipRects)[0].x1 = 0; (pdp->pClipRects)[0].y1 = 0; (pdp->pClipRects)[0].x2 = width; |