diff options
author | Ian Romanick <[email protected]> | 2012-05-29 12:15:11 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2012-06-13 13:17:54 -0700 |
commit | 933714aabe5464f6168909738f9ffe712e457f26 (patch) | |
tree | 4526cea491e5f31ba592963a5bfca67f28027b20 /src/mapi/glapi/gen/gl_API.xml | |
parent | a29ad2b421b75a1727b3460db27b9f57e0bb226d (diff) |
glapi: Remove GL_SGIS_pixel_texture from the dispatch table
There is no GLX protocol for these functions, and no Linux driver has
ever supported this extension. There's no reason to have slots for
these functions in the dispatch table.
The unit tests (GetProcAddress::TableDidntShrink and others) are also updated.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mapi/glapi/gen/gl_API.xml')
-rw-r--r-- | src/mapi/glapi/gen/gl_API.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml index a4827600b18..e7bb0bade97 100644 --- a/src/mapi/glapi/gen/gl_API.xml +++ b/src/mapi/glapi/gen/gl_API.xml @@ -8619,37 +8619,37 @@ </category> <category name="GL_SGIS_pixel_texture" number="15"> - <function name="PixelTexGenParameteriSGIS" offset="assign" static_dispatch="false"> + <function name="PixelTexGenParameteriSGIS"> <param name="pname" type="GLenum"/> <param name="param" type="GLint"/> <glx ignore="true"/> </function> - <function name="PixelTexGenParameterivSGIS" offset="assign" static_dispatch="false"> + <function name="PixelTexGenParameterivSGIS"> <param name="pname" type="GLenum"/> <param name="params" type="const GLint *"/> <glx ignore="true"/> </function> - <function name="PixelTexGenParameterfSGIS" offset="assign" static_dispatch="false"> + <function name="PixelTexGenParameterfSGIS"> <param name="pname" type="GLenum"/> <param name="param" type="GLfloat"/> <glx ignore="true"/> </function> - <function name="PixelTexGenParameterfvSGIS" offset="assign" static_dispatch="false"> + <function name="PixelTexGenParameterfvSGIS"> <param name="pname" type="GLenum"/> <param name="params" type="const GLfloat *"/> <glx ignore="true"/> </function> - <function name="GetPixelTexGenParameterivSGIS" offset="assign" static_dispatch="false"> + <function name="GetPixelTexGenParameterivSGIS"> <param name="pname" type="GLenum"/> <param name="params" type="GLint *" output="true" variable_param="pname"/> <glx ignore="true"/> </function> - <function name="GetPixelTexGenParameterfvSGIS" offset="assign" static_dispatch="false"> + <function name="GetPixelTexGenParameterfvSGIS"> <param name="pname" type="GLenum"/> <param name="params" type="GLfloat *" output="true" variable_param="pname"/> <glx ignore="true"/> |