Added missing parameter names to Nvidia Fence extension.
This commit is contained in:
parent
324538ac9f
commit
09207c2934
1 changed files with 7 additions and 7 deletions
|
@ -470,13 +470,13 @@ typedef void (GL_APIENTRYP PFNGLGETPERFMONITORCOUNTERDATAAMDPROC) (GLuint monito
|
||||||
#ifndef GL_NV_fence
|
#ifndef GL_NV_fence
|
||||||
#define GL_NV_fence 1
|
#define GL_NV_fence 1
|
||||||
#ifdef GL_GLEXT_PROTOTYPES
|
#ifdef GL_GLEXT_PROTOTYPES
|
||||||
GL_APICALL void GL_APIENTRY glDeleteFencesNV (GLsizei, const GLuint *);
|
GL_APICALL void GL_APIENTRY glDeleteFencesNV (GLsizei n, const GLuint *fences);
|
||||||
GL_APICALL void GL_APIENTRY glGenFencesNV (GLsizei, GLuint *);
|
GL_APICALL void GL_APIENTRY glGenFencesNV (GLsizei n, GLuint *fences);
|
||||||
GL_APICALL GLboolean GL_APIENTRY glIsFenceNV (GLuint);
|
GL_APICALL GLboolean GL_APIENTRY glIsFenceNV (GLuint fence);
|
||||||
GL_APICALL GLboolean GL_APIENTRY glTestFenceNV (GLuint);
|
GL_APICALL GLboolean GL_APIENTRY glTestFenceNV (GLuint fence);
|
||||||
GL_APICALL void GL_APIENTRY glGetFenceivNV (GLuint, GLenum, GLint *);
|
GL_APICALL void GL_APIENTRY glGetFenceivNV (GLuint fence, GLenum, GLint *params);
|
||||||
GL_APICALL void GL_APIENTRY glFinishFenceNV (GLuint);
|
GL_APICALL void GL_APIENTRY glFinishFenceNV (GLuint fence);
|
||||||
GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint, GLenum);
|
GL_APICALL void GL_APIENTRY glSetFenceNV (GLuint fence, GLenum condition);
|
||||||
#endif
|
#endif
|
||||||
typedef void (GL_APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences);
|
typedef void (GL_APIENTRYP PFNGLDELETEFENCESNVPROC) (GLsizei n, const GLuint *fences);
|
||||||
typedef void (GL_APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences);
|
typedef void (GL_APIENTRYP PFNGLGENFENCESNVPROC) (GLsizei n, GLuint *fences);
|
||||||
|
|
Loading…
Reference in a new issue