diff options
author | Marta Lofstedt <[email protected]> | 2015-11-25 12:16:02 +0100 |
---|---|---|
committer | Marta Lofstedt <[email protected]> | 2015-11-26 08:40:46 +0100 |
commit | 63b49e1711382c263acdcbe2d58c28ef64164059 (patch) | |
tree | 92737c88400089ddd302884661141fc6b301ebb8 /src/mapi | |
parent | c2e146f4879b806e7178b8145645268c1ce0b4cd (diff) |
mesa: remove ARB_geometry_shader4
No drivers currently implement ARB_geometry_shader4, nor are there
any plans to implement it. We only support the version of geometry
shaders that was incorporated into OpenGL 3.2 / GLSL 1.50.
Signed-off-by: Marta Lofstedt <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_geometry_shader4.xml | 57 | ||||
-rw-r--r-- | src/mapi/glapi/gen/Makefile.am | 1 | ||||
-rw-r--r-- | src/mapi/glapi/gen/gl_API.xml | 2 |
3 files changed, 1 insertions, 59 deletions
diff --git a/src/mapi/glapi/gen/ARB_geometry_shader4.xml b/src/mapi/glapi/gen/ARB_geometry_shader4.xml deleted file mode 100644 index 280e7a07599..00000000000 --- a/src/mapi/glapi/gen/ARB_geometry_shader4.xml +++ /dev/null @@ -1,57 +0,0 @@ -<?xml version="1.0"?> -<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd"> - -<!-- Note: no GLX protocol info yet. --> - -<OpenGLAPI> - - -<category name="GL_ARB_geometry_shader4" number="47"> - <enum name="GEOMETRY_SHADER_ARB" value="0x8DD9"/> - <enum name="GEOMETRY_VERTICES_OUT_ARB" value="0x8DDA"/> - <enum name="GEOMETRY_INPUT_TYPE_ARB" value="0x8DDB"/> - <enum name="GEOMETRY_OUTPUT_TYPE_ARB" value="0x8DDC"/> - <enum name="MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB" value="0x8C29"/> - <enum name="MAX_GEOMETRY_VARYING_COMPONENTS_ARB" value="0x8DDD"/> - <enum name="MAX_VERTEX_VARYING_COMPONENTS_ARB" value="0x8DDE"/> - <enum name="MAX_VARYING_COMPONENTS" value="0x8B4B"/> - <enum name="MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB" value="0x8DDF"/> - <enum name="MAX_GEOMETRY_OUTPUT_VERTICES_ARB" value="0x8DE0"/> - <enum name="MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB" value="0x8DE1"/> - <enum name="LINES_ADJACENCY_ARB" value="0xA"/> - <enum name="LINE_STRIP_ADJACENCY_ARB" value="0xB"/> - <enum name="TRIANGLES_ADJACENCY_ARB" value="0xC"/> - <enum name="TRIANGLE_STRIP_ADJACENCY_ARB" value="0xD"/> - <enum name="FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB" value="0x8DA8"/> - <enum name="FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB" value="0x8DA9"/> - <enum name="FRAMEBUFFER_ATTACHMENT_LAYERED_ARB" value="0x8DA7"/> - <enum name="FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER" value="0x8CD4"/> - <enum name="PROGRAM_POINT_SIZE_ARB" value="0x8642"/> - <function name="ProgramParameteriARB" alias="ProgramParameteri"> - <param name="program" type="GLuint"/> - <param name="pname" type="GLenum"/> - <param name="value" type="GLint"/> - </function> - <function name="FramebufferTextureARB" alias="FramebufferTexture"> - <param name="target" type="GLenum"/> - <param name="attachment" type="GLenum"/> - <param name="texture" type="GLuint"/> - <param name="level" type="GLint"/> - </function> - <function name="FramebufferTextureLayerARB" alias="FramebufferTextureLayer"> - <param name="target" type="GLenum"/> - <param name="attachment" type="GLenum"/> - <param name="texture" type="GLuint"/> - <param name="level" type="GLint"/> - <param name="layer" type="GLint"/> - </function> - <function name="FramebufferTextureFaceARB" exec="skip"> - <param name="target" type="GLenum"/> - <param name="attachment" type="GLenum"/> - <param name="texture" type="GLuint"/> - <param name="level" type="GLint"/> - <param name="face" type="GLenum"/> - </function> -</category> - -</OpenGLAPI> diff --git a/src/mapi/glapi/gen/Makefile.am b/src/mapi/glapi/gen/Makefile.am index a5a26a652ee..40b0e6599f4 100644 --- a/src/mapi/glapi/gen/Makefile.am +++ b/src/mapi/glapi/gen/Makefile.am @@ -133,7 +133,6 @@ API_XML = \ ARB_ES3_compatibility.xml \ ARB_framebuffer_no_attachments.xml \ ARB_framebuffer_object.xml \ - ARB_geometry_shader4.xml \ ARB_get_program_binary.xml \ ARB_get_texture_sub_image.xml \ ARB_gpu_shader_fp64.xml \ diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml index ec83cd43d16..6243bddd218 100644 --- a/src/mapi/glapi/gen/gl_API.xml +++ b/src/mapi/glapi/gen/gl_API.xml @@ -7975,7 +7975,7 @@ <!-- 46. GL_ARB_framebuffer_sRGB --> -<xi:include href="ARB_geometry_shader4.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/> +<!-- 47. GL_ARB_geometry_shader4. There are no intentions to implement this extension --> <!-- 48. GL_ARB_half_float_vertex --> |