diff options
author | Brian Paul <[email protected]> | 2002-09-06 03:30:20 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-09-06 03:30:20 +0000 |
commit | e41c57758d30c59cf5986f50c6f2326815c6ac53 (patch) | |
tree | a63e78f5524b24d32a14631cfff5b201f4881480 /src/mesa/glapi | |
parent | 7d7ec0ea917e6abb5711b7c8dad0b17c8469482f (diff) |
fixed glSampleCoverage typo
Diffstat (limited to 'src/mesa/glapi')
-rw-r--r-- | src/mesa/glapi/APIspec | 6 | ||||
-rw-r--r-- | src/mesa/glapi/glapitemp.h | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/src/mesa/glapi/APIspec b/src/mesa/glapi/APIspec index f5b113d0a74..b2978de4dc9 100644 --- a/src/mesa/glapi/APIspec +++ b/src/mesa/glapi/APIspec @@ -1,4 +1,4 @@ -# $Id: APIspec,v 1.10 2002/09/06 03:19:36 brianp Exp $ +# $Id: APIspec,v 1.11 2002/09/06 03:30:20 brianp Exp $ # This file describes all the OpenGL functions. # We use a number of Python scripts to parse this file and @@ -3526,8 +3526,8 @@ return void param m const GLdouble * category 1.3 -name SampleCover -alias SampleCoverageARBARB +name SampleCoverage +alias SampleCoverageARB return void param value GLclampf param invert GLboolean diff --git a/src/mesa/glapi/glapitemp.h b/src/mesa/glapi/glapitemp.h index 21acf562870..0f76b28750b 100644 --- a/src/mesa/glapi/glapitemp.h +++ b/src/mesa/glapi/glapitemp.h @@ -2343,7 +2343,11 @@ KEYWORD1 void KEYWORD2 NAME(MultTransposeMatrixd)(const GLdouble * m) DISPATCH(MultTransposeMatrixdARB, (m), (F, "glMultTransposeMatrixd(%p);\n", (void *) m)); } -/* No dispatch for SampleCover() */ +KEYWORD1 void KEYWORD2 NAME(SampleCoverage)(GLclampf value, GLboolean invert) +{ + DISPATCH(SampleCoverageARB, (value, invert), (F, "glSampleCoverage(%f, %d);\n", value, invert)); +} + KEYWORD1 void KEYWORD2 NAME(CompressedTexImage3D)(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const GLvoid * data) { DISPATCH(CompressedTexImage3DARB, (target, level, internalformat, width, height, depth, border, imageSize, data), (F, "glCompressedTexImage3D(0x%x, %d, 0x%x, %d, %d, %d, %d, %d, %p);\n", target, level, internalformat, width, height, depth, border, imageSize, (void *) data)); @@ -4998,6 +5002,7 @@ void *UNUSED_TABLE_NAME[] = { TABLE_ENTRY(LoadTransposeMatrixd), TABLE_ENTRY(MultTransposeMatrixf), TABLE_ENTRY(MultTransposeMatrixd), + TABLE_ENTRY(SampleCoverage), TABLE_ENTRY(CompressedTexImage3D), TABLE_ENTRY(CompressedTexImage2D), TABLE_ENTRY(CompressedTexImage1D), |