diff options
author | Brian Paul <[email protected]> | 2003-04-09 02:32:56 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-04-09 02:32:56 +0000 |
commit | 4c928471c182761b6649415ff0614715f0247770 (patch) | |
tree | 53f8b2e6c71912d1a8e0bd43370117c1404c9bdf | |
parent | ef393cbb54f49e229df623ab7c91b4dbc78b6df7 (diff) |
Added function pointer typedefs for GL_NV_fragment_program
-rw-r--r-- | include/GL/gl.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/GL/gl.h b/include/GL/gl.h index 57632f6bfa4..2d7b9ba3ef4 100644 --- a/include/GL/gl.h +++ b/include/GL/gl.h @@ -1,5 +1,3 @@ -/* $Id: gl.h,v 1.75 2003/02/28 16:31:32 brianp Exp $ */ - /* * Mesa 3-D graphics library * Version: 5.1 @@ -2705,6 +2703,13 @@ GLAPI void GLAPIENTRY glGetProgramLocalParameterfvARB(GLenum target, GLuint index, GLfloat *params); +typedef void (APIENTRY * PFNGLPROGRAMNAMEDPARAMETER4FNVPROC) (GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); +typedef void (APIENTRY * PFNGLPROGRAMNAMEDPARAMETER4DNVPROC) (GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); +typedef void (APIENTRY * PFNGLPROGRAMNAMEDPARAMETER4FVNVPROC) (GLuint id, GLsizei len, const GLubyte * name, const GLfloat *v); +typedef void (APIENTRY * PFNGLPROGRAMNAMEDPARAMETER4DVNVPROC) (GLuint id, GLsizei len, const GLubyte * name, const GLdouble *v); +typedef void (APIENTRY * PFNGLGETPROGRAMNAMEDPARAMETERFVNVPROC) (GLuint id, GLsizei len, const GLubyte * name, GLfloat *params); +typedef void (APIENTRY * PFNGLGETPROGRAMNAMEDPARAMETERDVNVPROC) (GLuint id, GLsizei len, const GLubyte * name, GLdouble *params); + #endif /* GL_NV_fragment_program */ |