s/GLint/int/, to fit GLX conventions
This commit is contained in:
parent
0d57301ba2
commit
841a823d6d
1 changed files with 3 additions and 2 deletions
|
|
@ -1722,7 +1722,7 @@ PUBLIC int glXSwapIntervalSGI(int interval)
|
|||
/*
|
||||
** GLX_MESA_swap_control
|
||||
*/
|
||||
PUBLIC GLint glXSwapIntervalMESA(unsigned interval)
|
||||
PUBLIC int glXSwapIntervalMESA(unsigned int interval)
|
||||
{
|
||||
#ifdef GLX_DIRECT_RENDERING
|
||||
GLXContext gc = __glXGetCurrentContext();
|
||||
|
|
@ -1754,7 +1754,8 @@ PUBLIC GLint glXSwapIntervalMESA(unsigned interval)
|
|||
return GLX_BAD_CONTEXT;
|
||||
}
|
||||
|
||||
PUBLIC GLint glXGetSwapIntervalMESA( void )
|
||||
|
||||
PUBLIC int glXGetSwapIntervalMESA(void)
|
||||
{
|
||||
#ifdef GLX_DIRECT_RENDERING
|
||||
GLXContext gc = __glXGetCurrentContext();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue