diff options
author | Brian Paul <[email protected]> | 2009-09-03 13:02:41 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-03 13:02:41 -0600 |
commit | dc60d0db5253e3b3f0813394f666d32378723353 (patch) | |
tree | 9157676a27fca1f3bf91e2d6cca23b7b8f736ded /src/mesa/glapi/ARB_sync.xml | |
parent | e059885ce357dee8b847f10e8e8c515a4a20042e (diff) |
glapi: fix incorrect/missing return types for glFenceSync(), glClientWaitSync()
Diffstat (limited to 'src/mesa/glapi/ARB_sync.xml')
-rw-r--r-- | src/mesa/glapi/ARB_sync.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/glapi/ARB_sync.xml b/src/mesa/glapi/ARB_sync.xml index 58989b084a1..37f474980cf 100644 --- a/src/mesa/glapi/ARB_sync.xml +++ b/src/mesa/glapi/ARB_sync.xml @@ -40,7 +40,7 @@ <function name="FenceSync" offset="assign"> <param name="condition" type="GLenum"/> <param name="flags" type="GLbitfield"/> - <return type="GLuint"/> + <return type="GLsync"/> </function> <function name="IsSync" offset="assign"> @@ -56,6 +56,7 @@ <param name="sync" type="GLsync"/> <param name="flags" type="GLbitfield"/> <param name="timeout" type="GLuint64"/> + <return type="GLenum"/> </function> <function name="WaitSync" offset="assign"> |