diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-10-02 10:05:59 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-10-02 10:05:59 +0100 |
commit | 97fea2fd0c36d78f4e940b124a7886c4a3f3dfc7 (patch) | |
tree | 37a2535eb669fa3b34d25101655b457b3f88770e /src/legacy/i810 | |
parent | 8784c4f5a1524fb979b00c7ce7981cbc1dcf0ec0 (diff) |
legacy/i810: Remove pVisualConfigs
Completely unused pulling in an undesired glxproto dependency.
Reported-by: Cyril Brulebois <kibi@debian.org>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=30554
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/legacy/i810')
-rw-r--r-- | src/legacy/i810/i810.h | 3 | ||||
-rw-r--r-- | src/legacy/i810/i810_dri.c | 4 |
2 files changed, 0 insertions, 7 deletions
diff --git a/src/legacy/i810/i810.h b/src/legacy/i810/i810.h index b39cfff3..66206951 100644 --- a/src/legacy/i810/i810.h +++ b/src/legacy/i810/i810.h @@ -57,7 +57,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include "sarea.h" #define _XF86DRI_SERVER_ #include "dri.h" -#include "GL/glxint.h" #include "i810_dri.h" #endif @@ -230,8 +229,6 @@ typedef struct _I810Rec { DRIInfoPtr pDRIInfo; int drmSubFD; int numVisualConfigs; - __GLXvisualConfig *pVisualConfigs; - I810ConfigPrivPtr pVisualConfigsPriv; unsigned long dcacheHandle; unsigned long backHandle; unsigned long zHandle; diff --git a/src/legacy/i810/i810_dri.c b/src/legacy/i810/i810_dri.c index 3326c370..509c1415 100644 --- a/src/legacy/i810/i810_dri.c +++ b/src/legacy/i810/i810_dri.c @@ -938,10 +938,6 @@ I810DRICloseScreen(ScreenPtr pScreen) DRIDestroyInfoRec(pI810->pDRIInfo); pI810->pDRIInfo = NULL; } - if (pI810->pVisualConfigs) - free(pI810->pVisualConfigs); - if (pI810->pVisualConfigsPriv) - free(pI810->pVisualConfigsPriv); } static Bool |