diff options
author | Keith Whitwell <[email protected]> | 2003-11-24 15:23:18 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2003-11-24 15:23:18 +0000 |
commit | ae0eaf93e092ac8e8b1c98f3e986de96940663fa (patch) | |
tree | 56aae7c4b985f657384df5e088227c4dd08130fb /src/mesa/main/api_noop.h | |
parent | 57c9814b9e87924696df4c741861c29d4236d1eb (diff) |
Merge vtx-0-2-branch
Diffstat (limited to 'src/mesa/main/api_noop.h')
-rw-r--r-- | src/mesa/main/api_noop.h | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/src/mesa/main/api_noop.h b/src/mesa/main/api_noop.h index da133ace786..ecc889b67ee 100644 --- a/src/mesa/main/api_noop.h +++ b/src/mesa/main/api_noop.h @@ -46,9 +46,9 @@ extern void _mesa_noop_FogCoordfEXT( GLfloat a ); extern void _mesa_noop_FogCoordfvEXT( const GLfloat *v ); -extern void _mesa_noop_Indexi( GLint i ); +extern void _mesa_noop_Indexf( GLfloat i ); -extern void _mesa_noop_Indexiv( const GLint *v ); +extern void _mesa_noop_Indexfv( const GLfloat *v ); extern void _mesa_noop_Normal3f( GLfloat a, GLfloat b, GLfloat c ); @@ -127,11 +127,37 @@ extern void _mesa_noop_Vertex3f( GLfloat a, GLfloat b, GLfloat c ); extern void _mesa_noop_Vertex4f( GLfloat a, GLfloat b, GLfloat c, GLfloat d ); +extern void _mesa_noop_VertexAttrib1fNV( GLuint index, GLfloat x ); + +extern void _mesa_noop_VertexAttrib1fvNV( GLuint index, const GLfloat *v ); + +extern void _mesa_noop_VertexAttrib2fNV( GLuint index, GLfloat x, GLfloat y ); +extern void _mesa_noop_VertexAttrib2fvNV( GLuint index, const GLfloat *v ); + +extern void _mesa_noop_VertexAttrib3fNV( GLuint index, GLfloat x, + GLfloat y, GLfloat z ); +extern void _mesa_noop_VertexAttrib3fvNV( GLuint index, const GLfloat *v ); + extern void _mesa_noop_VertexAttrib4fNV( GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w ); extern void _mesa_noop_VertexAttrib4fvNV( GLuint index, const GLfloat *v ); +extern void _mesa_noop_End( void ); +extern void _mesa_noop_Begin( GLenum mode ); +extern void _mesa_noop_EvalPoint2( GLint a, GLint b ); +extern void _mesa_noop_EvalPoint1( GLint a ); +extern void _mesa_noop_EvalCoord2fv( const GLfloat *v ); +extern void _mesa_noop_EvalCoord2f( GLfloat a, GLfloat b ); +extern void _mesa_noop_EvalCoord1fv( const GLfloat *v ); +extern void _mesa_noop_EvalCoord1f( GLfloat a ); + +extern void _mesa_noop_vtxfmt_init( GLvertexformat *vfmt ); + +extern void _mesa_noop_EvalMesh2( GLenum mode, GLint i1, GLint i2, + GLint j1, GLint j2 ); + +extern void _mesa_noop_EvalMesh1( GLenum mode, GLint i1, GLint i2 ); /* Not strictly a noop -- translate Rectf down to Begin/End and |