Remove prototypes and externs for non-existant functions and variables.
This commit is contained in:
parent
a0179281a6
commit
64479fffa2
|
@ -71,9 +71,6 @@ extern void __glXClearErrorOccured(void);
|
||||||
extern GLboolean __glXErrorOccured(void);
|
extern GLboolean __glXErrorOccured(void);
|
||||||
extern void __glXResetLargeCommandStatus(__GLXclientState*);
|
extern void __glXResetLargeCommandStatus(__GLXclientState*);
|
||||||
|
|
||||||
extern int __glXQueryContextInfoEXT(__GLXclientState *cl, GLbyte *pc);
|
|
||||||
extern int __glXSwapQueryContextInfoEXT(__GLXclientState *cl, GLbyte *pc);
|
|
||||||
|
|
||||||
extern int DoMakeCurrent( __GLXclientState *cl, GLXDrawable drawId,
|
extern int DoMakeCurrent( __GLXclientState *cl, GLXDrawable drawId,
|
||||||
GLXDrawable readId, GLXContextID contextId, GLXContextTag tag );
|
GLXDrawable readId, GLXContextID contextId, GLXContextTag tag );
|
||||||
extern int DoGetVisualConfigs(__GLXclientState *cl, unsigned screen,
|
extern int DoGetVisualConfigs(__GLXclientState *cl, unsigned screen,
|
||||||
|
@ -93,8 +90,6 @@ extern int DoRenderLarge(__GLXclientState *cl, GLbyte *pc, int do_swap);
|
||||||
|
|
||||||
extern void GlxExtensionInit(void);
|
extern void GlxExtensionInit(void);
|
||||||
|
|
||||||
extern Bool __glXCoreType(void);
|
|
||||||
|
|
||||||
extern const char GLServerVersion[];
|
extern const char GLServerVersion[];
|
||||||
extern int DoGetString(__GLXclientState *cl, GLbyte *pc, GLboolean need_swap);
|
extern int DoGetString(__GLXclientState *cl, GLbyte *pc, GLboolean need_swap);
|
||||||
|
|
||||||
|
|
|
@ -191,7 +191,6 @@ typedef int (*__GLXdispatchVendorPrivProcPtr)(__GLXclientState *, GLbyte *);
|
||||||
* Dispatch for GLX commands.
|
* Dispatch for GLX commands.
|
||||||
*/
|
*/
|
||||||
typedef int (*__GLXprocPtr)(__GLXclientState *, char *pc);
|
typedef int (*__GLXprocPtr)(__GLXclientState *, char *pc);
|
||||||
extern __GLXprocPtr __glXProcTable[];
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Tables for computing the size of each rendering command.
|
* Tables for computing the size of each rendering command.
|
||||||
|
@ -252,6 +251,4 @@ extern int __glXImageSize(GLenum format, GLenum type,
|
||||||
GLint imageHeight, GLint rowLength, GLint skipImages, GLint skipRows,
|
GLint imageHeight, GLint rowLength, GLint skipImages, GLint skipRows,
|
||||||
GLint alignment);
|
GLint alignment);
|
||||||
|
|
||||||
extern int __glXDrawArraysReqSize(const GLbyte *pc, Bool swap);
|
|
||||||
|
|
||||||
#endif /* !__GLX_server_h__ */
|
#endif /* !__GLX_server_h__ */
|
||||||
|
|
Loading…
Reference in New Issue