mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-25 01:59:56 +00:00
GLX: Purge glxint.h usage
Change (__GLXvisualConfig *) to (void *) in ABI compat stubs. (cherry picked from commit b4adec886c65e49cfbd30d1e3a41b613f75ed3f5)
This commit is contained in:
@@ -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. */
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user