diff options
author | Michal Krol <[email protected]> | 2009-09-07 09:16:35 +0200 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-09-07 09:16:35 +0200 |
commit | 826d441cdfa16a16d165297beb3013f4ff8b4816 (patch) | |
tree | d2f41be30ddcfd4e1f56d82cdba8fe2980bca390 /src/mesa/main/syncobj.h | |
parent | 617202b5783b227be4f082b0da51b84d48500b3c (diff) |
mesa: Fix calling conventions of sync object api callbacks.
Diffstat (limited to 'src/mesa/main/syncobj.h')
-rw-r--r-- | src/mesa/main/syncobj.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/main/syncobj.h b/src/mesa/main/syncobj.h index fc160af2893..f23fa281e20 100644 --- a/src/mesa/main/syncobj.h +++ b/src/mesa/main/syncobj.h @@ -48,22 +48,22 @@ _mesa_ref_sync_object(GLcontext *ctx, struct gl_sync_object *syncObj); extern void _mesa_unref_sync_object(GLcontext *ctx, struct gl_sync_object *syncObj); -extern GLboolean +extern GLboolean GLAPIENTRY _mesa_IsSync(GLsync sync); -extern void +extern void GLAPIENTRY _mesa_DeleteSync(GLsync sync); -extern GLsync +extern GLsync GLAPIENTRY _mesa_FenceSync(GLenum condition, GLbitfield flags); -extern GLenum +extern GLenum GLAPIENTRY _mesa_ClientWaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout); -extern void +extern void GLAPIENTRY _mesa_WaitSync(GLsync sync, GLbitfield flags, GLuint64 timeout); -extern void +extern void GLAPIENTRY _mesa_GetSynciv(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei *length, GLint *values); |