diff options
author | Fabian Bieler <[email protected]> | 2014-09-21 13:40:42 +1200 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2015-02-17 22:06:19 -0800 |
commit | 599cbe5508ccb246fe06b64116c84ce976165fed (patch) | |
tree | af941470482979642b11cd131af74af0581e5389 /src | |
parent | d523fefa756eef9c7a2c0d91cf4c2df10b89ed2a (diff) |
mesa: Add ARB_tessellation_shader to extension table.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/extensions.c | 1 | ||||
-rw-r--r-- | src/mesa/main/mtypes.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 685236a9194..c4293e7e79d 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -158,6 +158,7 @@ static const struct extension extension_table[] = { { "GL_ARB_stencil_texturing", o(ARB_stencil_texturing), GL, 2012 }, { "GL_ARB_sync", o(ARB_sync), GL, 2003 }, { "GL_ARB_texture_barrier", o(NV_texture_barrier), GL, 2014 }, + { "GL_ARB_tessellation_shader", o(ARB_tessellation_shader), GLC, 2009 }, { "GL_ARB_texture_border_clamp", o(ARB_texture_border_clamp), GLL, 2000 }, { "GL_ARB_texture_buffer_object", o(ARB_texture_buffer_object), GLC, 2008 }, { "GL_ARB_texture_buffer_object_rgb32", o(ARB_texture_buffer_object_rgb32), GLC, 2009 }, diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 08133f1afe0..87bcfe28a00 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -3768,6 +3768,7 @@ struct gl_extensions GLboolean ARB_shadow; GLboolean ARB_stencil_texturing; GLboolean ARB_sync; + GLboolean ARB_tessellation_shader; GLboolean ARB_texture_border_clamp; GLboolean ARB_texture_buffer_object; GLboolean ARB_texture_buffer_object_rgb32; |