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.h | |
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.h')
-rw-r--r-- | src/glx/mini/dri_util.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/glx/mini/dri_util.h b/src/glx/mini/dri_util.h index 0430c60623e..a3934da4b92 100644 --- a/src/glx/mini/dri_util.h +++ b/src/glx/mini/dri_util.h @@ -50,7 +50,9 @@ #include <inttypes.h> #include "dri.h" /* public entry points */ -#include "sarea.h" /* for XF86DRISAREAPtr */ +#include "xf86drm.h" +#include "drm.h" +#include "drm_sarea.h" #define _SOLO @@ -290,7 +292,7 @@ struct __DRIdrawablePrivateRec { int w; int h; int numClipRects; - XF86DRIClipRectPtr pClipRects; + drm_clip_rect_t *pClipRects; /*@}*/ /** @@ -302,7 +304,7 @@ struct __DRIdrawablePrivateRec { int backY; int backClipRectType; int numBackClipRects; - XF86DRIClipRectPtr pBackClipRects; + drm_clip_rect_t *pBackClipRects; /*@}*/ /** @@ -431,7 +433,7 @@ struct __DRIscreenPrivateRec { * - the device lock * - the device-independent per-drawable and per-context(?) information */ - XF86DRISAREAPtr pSAREA; + drm_sarea_t *pSAREA; /** * \name Direct frame buffer access information |