diff options
author | Chad Versace <[email protected]> | 2011-01-27 01:40:02 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2011-01-26 16:37:44 -0800 |
commit | 1aeecaa43346d5ab6feec5d7caf28bd5ce53a32b (patch) | |
tree | c62008f7918aecffaec14fbd08134a728a2e4bd4 /src/mesa/main/extensions.c | |
parent | 8697dbdfbcb6c5cf256658ed6cb2277040b586d2 (diff) |
mesa: Add AMD_conservative_depth to extension list
The extension is off by default.
First in a patchset that implements support for AMD_conservative_depth in
the compiler.
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 7d15e3a50fb..35839aea63b 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -250,6 +250,7 @@ static const struct extension extension_table[] = { /* Vendor extensions */ { "GL_3DFX_texture_compression_FXT1", o(TDFX_texture_compression_FXT1), GL }, + { "GL_AMD_conservative_depth", o(AMD_conservative_depth), GL | ES2 }, { "GL_APPLE_client_storage", o(APPLE_client_storage), GL }, { "GL_APPLE_object_purgeable", o(APPLE_object_purgeable), GL }, { "GL_APPLE_packed_pixels", o(APPLE_packed_pixels), GL }, |