diff options
author | Micah Fedke <[email protected]> | 2014-12-31 14:16:52 -0600 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2015-01-19 16:33:21 +1300 |
commit | d36fa60191359af9ac1e1889bcdc95c3b9d65332 (patch) | |
tree | 62286cbf0bd9caaa7ed733bd0e4373f66fc016fc /src/mesa/main/extensions.c | |
parent | 461103ef64858e9d81073fad1bd8222b70b2754b (diff) |
mesa: Add ARB_shader_precision infrastructure
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Chris Forbes <[email protected]>
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index e5bac7f894a..16f12418ee9 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -148,6 +148,7 @@ static const struct extension extension_table[] = { { "GL_ARB_shader_bit_encoding", o(ARB_shader_bit_encoding), GL, 2010 }, { "GL_ARB_shader_image_load_store", o(ARB_shader_image_load_store), GL, 2011 }, { "GL_ARB_shader_objects", o(dummy_true), GL, 2002 }, + { "GL_ARB_shader_precision", o(ARB_shader_precision), GL, 2010 }, { "GL_ARB_shader_stencil_export", o(ARB_shader_stencil_export), GL, 2009 }, { "GL_ARB_shader_texture_lod", o(ARB_shader_texture_lod), GL, 2009 }, { "GL_ARB_shading_language_100", o(dummy_true), GLL, 2003 }, |