GLX: Purge glxint.h usage

Change (__GLXvisualConfig *) to (void *) in ABI compat stubs.
(cherry picked from commit b4adec886c)
This commit is contained in:
Jeremy Huddleston 2009-05-29 14:47:18 -07:00
parent b5e871e44c
commit 3f6ae7007c
2 changed files with 2 additions and 3 deletions

View File

@ -224,7 +224,7 @@ glxGetScreen(ScreenPtr pScreen)
}
void GlxSetVisualConfigs(int nconfigs,
__GLXvisualConfig *configs, void **privates)
void *configs, void **privates)
{
/* We keep this stub around for the DDX drivers that still
* call it. */

View File

@ -55,7 +55,6 @@
#define GL_GLEXT_PROTOTYPES /* we want prototypes */
#include <GL/gl.h>
#include <GL/glxproto.h>
#include <GL/glxint.h>
/* For glxscreens.h */
typedef struct __GLXdrawable __GLXdrawable;
@ -93,7 +92,7 @@ extern __GLXclientState *glxGetClient(ClientPtr pClient);
void GlxExtensionInit(void);
void GlxSetVisualConfigs(int nconfigs,
__GLXvisualConfig *configs, void **privates);
void *configs, void **privates);
struct _glapi_table;
void GlxSetRenderTables (struct _glapi_table *table);