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>
This commit is contained in:
parent
8784c4f5a1
commit
97fea2fd0c
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue