diff options
author | Brian Paul <[email protected]> | 2003-05-28 14:26:03 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-05-28 14:26:03 +0000 |
commit | e8e93e9cc641e31c9c0e6a2bb1ac3e44d0bdec5a (patch) | |
tree | ffa199c620c5db69d6a61d253c92b01781898720 /src/mesa/main/arbprogram.h | |
parent | 2c5f93784ea1ba28ae15181917ff3e47656a93ad (diff) |
glBindProgramARB dispatches to glBindProgramNV (remove _mesa_BindProgramARB).
Removed VertexAttrib*ARB() stubs.
Diffstat (limited to 'src/mesa/main/arbprogram.h')
-rw-r--r-- | src/mesa/main/arbprogram.h | 112 |
1 files changed, 0 insertions, 112 deletions
diff --git a/src/mesa/main/arbprogram.h b/src/mesa/main/arbprogram.h index a4030902a17..7f4dd877580 100644 --- a/src/mesa/main/arbprogram.h +++ b/src/mesa/main/arbprogram.h @@ -26,114 +26,6 @@ #ifndef ARBPROGRAM_H #define ARBPROGRAM_H -extern void -_mesa_VertexAttrib1sARB(GLuint index, GLshort x); - -extern void -_mesa_VertexAttrib1fARB(GLuint index, GLfloat x); - -extern void -_mesa_VertexAttrib1dARB(GLuint index, GLdouble x); - -extern void -_mesa_VertexAttrib2sARB(GLuint index, GLshort x, GLshort y); - -extern void -_mesa_VertexAttrib2fARB(GLuint index, GLfloat x, GLfloat y); - -extern void -_mesa_VertexAttrib2dARB(GLuint index, GLdouble x, GLdouble y); - -extern void -_mesa_VertexAttrib3sARB(GLuint index, GLshort x, GLshort y, GLshort z); - -extern void -_mesa_VertexAttrib3fARB(GLuint index, GLfloat x, GLfloat y, GLfloat z); - -extern void -_mesa_VertexAttrib3dARB(GLuint index, GLdouble x, GLdouble y, GLdouble z); - -extern void -_mesa_VertexAttrib4sARB(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); - -extern void -_mesa_VertexAttrib4fARB(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); - -extern void -_mesa_VertexAttrib4dARB(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); - -extern void -_mesa_VertexAttrib4NubARB(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); - -extern void -_mesa_VertexAttrib1svARB(GLuint index, const GLshort *v); - -extern void -_mesa_VertexAttrib1fvARB(GLuint index, const GLfloat *v); - -extern void -_mesa_VertexAttrib1dvARB(GLuint index, const GLdouble *v); - -extern void -_mesa_VertexAttrib2svARB(GLuint index, const GLshort *v); - -extern void -_mesa_VertexAttrib2fvARB(GLuint index, const GLfloat *v); - -extern void -_mesa_VertexAttrib2dvARB(GLuint index, const GLdouble *v); - -extern void -_mesa_VertexAttrib3svARB(GLuint index, const GLshort *v); - -extern void -_mesa_VertexAttrib3fvARB(GLuint index, const GLfloat *v); - -extern void -_mesa_VertexAttrib3dvARB(GLuint index, const GLdouble *v); - -extern void -_mesa_VertexAttrib4bvARB(GLuint index, const GLbyte *v); - -extern void -_mesa_VertexAttrib4svARB(GLuint index, const GLshort *v); - -extern void -_mesa_VertexAttrib4ivARB(GLuint index, const GLint *v); - -extern void -_mesa_VertexAttrib4ubvARB(GLuint index, const GLubyte *v); - -extern void -_mesa_VertexAttrib4usvARB(GLuint index, const GLushort *v); - -extern void -_mesa_VertexAttrib4uivARB(GLuint index, const GLuint *v); - -extern void -_mesa_VertexAttrib4fvARB(GLuint index, const GLfloat *v); - -extern void -_mesa_VertexAttrib4dvARB(GLuint index, const GLdouble *v); - -extern void -_mesa_VertexAttrib4NbvARB(GLuint index, const GLbyte *v); - -extern void -_mesa_VertexAttrib4NsvARB(GLuint index, const GLshort *v); - -extern void -_mesa_VertexAttrib4NivARB(GLuint index, const GLint *v); - -extern void -_mesa_VertexAttrib4NubvARB(GLuint index, const GLubyte *v); - -extern void -_mesa_VertexAttrib4NusvARB(GLuint index, const GLushort *v); - -extern void -_mesa_VertexAttrib4NuivARB(GLuint index, const GLuint *v); - extern void _mesa_EnableVertexAttribArrayARB(GLuint index); @@ -165,10 +57,6 @@ _mesa_ProgramStringARB(GLenum target, GLenum format, GLsizei len, extern void -_mesa_BindProgramARB(GLenum target, GLuint program); - - -extern void _mesa_ProgramEnvParameter4dARB(GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); |