glx: Remove stray __GLinterface.
__GLinterface was droped from glcore.h
This commit is contained in:
parent
38ca7d388c
commit
a4e2fc7034
|
@ -275,7 +275,7 @@ static GLboolean errorOccured = GL_FALSE;
|
||||||
/*
|
/*
|
||||||
** The GL was will call this routine if an error occurs.
|
** The GL was will call this routine if an error occurs.
|
||||||
*/
|
*/
|
||||||
void __glXErrorCallBack(__GLinterface *gc, GLenum code)
|
void __glXErrorCallBack(GLenum code)
|
||||||
{
|
{
|
||||||
errorOccured = GL_TRUE;
|
errorOccured = GL_TRUE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,7 +66,7 @@ typedef struct {
|
||||||
extern GLboolean __glXFreeContext(__GLXcontext *glxc);
|
extern GLboolean __glXFreeContext(__GLXcontext *glxc);
|
||||||
extern void __glXFlushContextCache(void);
|
extern void __glXFlushContextCache(void);
|
||||||
|
|
||||||
extern void __glXErrorCallBack(__GLinterface *gc, GLenum code);
|
extern void __glXErrorCallBack(GLenum code);
|
||||||
extern void __glXClearErrorOccured(void);
|
extern void __glXClearErrorOccured(void);
|
||||||
extern GLboolean __glXErrorOccured(void);
|
extern GLboolean __glXErrorOccured(void);
|
||||||
extern void __glXResetLargeCommandStatus(__GLXclientState*);
|
extern void __glXResetLargeCommandStatus(__GLXclientState*);
|
||||||
|
|
Loading…
Reference in New Issue