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:49:05 -07:00
parent da2aaee24a
commit 5c8540d8cf
2 changed files with 2 additions and 3 deletions

View File

@ -225,7 +225,7 @@ glxGetScreen(ScreenPtr pScreen)
}
_X_EXPORT 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);