diff options
author | Timothy Arceri <[email protected]> | 2013-08-26 19:40:46 +1000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-09-04 07:47:49 -0600 |
commit | 51a279254fecc05691524dab1bf291c7dfefccd5 (patch) | |
tree | fa4dac90932df44f2dc26b0e123ab8d0ec0e3f0e /src/mesa/main/extensions.c | |
parent | 9405be4add90b55b078acd91f404ce2914afb405 (diff) |
mesa: Setup remaining infrastucture and enable KHR_debug
Signed-off-by: Timothy Arceri <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 1a040ee3b20..f60157f8cce 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -283,6 +283,9 @@ static const struct extension extension_table[] = { { "GL_OES_texture_npot", o(ARB_texture_non_power_of_two), ES1 | ES2, 2005 }, { "GL_OES_vertex_array_object", o(dummy_true), ES1 | ES2, 2010 }, + /* KHR extensions */ + { "GL_KHR_debug", o(dummy_true), GL, 2012 }, + /* Vendor extensions */ { "GL_3DFX_texture_compression_FXT1", o(TDFX_texture_compression_FXT1), GL, 1999 }, { "GL_AMD_conservative_depth", o(ARB_conservative_depth), GL, 2009 }, |