diff options
author | Ian Romanick <[email protected]> | 2005-05-26 16:24:35 +0000 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2005-05-26 16:24:35 +0000 |
commit | 249db89b009e64812d4bcec80d0c5a64f1d65aeb (patch) | |
tree | 51bfbe6823e15ed3419de7d43213a7cc72704755 /src/mesa/glapi/gl_API.xml | |
parent | 020225496ecd47374a2f147974c23519c706b867 (diff) |
Make a couple minor corrections to gl_API.xml. Fixes the name of an
extension that was missing the GL_ part and uses the core GL type names for
vertex buffer object functions instead of the ARB names.
Also commits the resulting changes to the generated code. Some how, the
#if sequence disappeared in the 1.52 version of glapi_x86.S.
Diffstat (limited to 'src/mesa/glapi/gl_API.xml')
-rw-r--r-- | src/mesa/glapi/gl_API.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/glapi/gl_API.xml b/src/mesa/glapi/gl_API.xml index 2ce70957fc8..5ce816693c8 100644 --- a/src/mesa/glapi/gl_API.xml +++ b/src/mesa/glapi/gl_API.xml @@ -4919,15 +4919,15 @@ <function name="BufferData" alias="BufferDataARB"> <param name="target" type="GLenum"/> - <param name="size" type="GLsizeiptrARB"/> + <param name="size" type="GLsizeiptr"/> <param name="data" type="const GLvoid *"/> <param name="usage" type="GLenum"/> </function> <function name="BufferSubData" alias="BufferSubDataARB"> <param name="target" type="GLenum"/> - <param name="offset" type="GLintptrARB"/> - <param name="size" type="GLsizeiptrARB"/> + <param name="offset" type="GLintptr"/> + <param name="size" type="GLsizeiptr"/> <param name="data" type="const GLvoid *"/> </function> @@ -4955,8 +4955,8 @@ <function name="GetBufferSubData" alias="GetBufferSubDataARB"> <param name="target" type="GLenum"/> - <param name="offset" type="GLintptrARB"/> - <param name="size" type="GLsizeiptrARB"/> + <param name="offset" type="GLintptr"/> + <param name="size" type="GLsizeiptr"/> <param name="data" type="GLvoid *" output="true"/> </function> @@ -11110,7 +11110,7 @@ <!-- No new functions, types, enums. --> </category> -<category name="EXT_stencil_two_side" number="268"> +<category name="GL_EXT_stencil_two_side" number="268"> <enum name="STENCIL_TEST_TWO_SIDE_EXT" count="1" value="0x8910"> <size name="Get" mode="get"/> </enum> |