diff options
author | Chia-I Wu <olv@lunarg.com> | 2010-12-08 22:33:07 +0800 |
---|---|---|
committer | Chia-I Wu <olv@lunarg.com> | 2010-12-08 22:35:40 +0800 |
commit | d2028ba33967b3ce3de94b0837c9faf06f1c2b94 (patch) | |
tree | 4cb6392516a704416ddd54edb2a4c5ba9690bdf4 | |
parent | 98ee6739d97b5592a7dad0b453c78e180a51ad50 (diff) |
mesa: Do not advertise GL_OES_texture_3D.
GL_OES_texture_3D has a GLSL counterpart. Since it is not implemented,
GL_OES_texture_3D should not be advertised.
-rw-r--r-- | src/mesa/main/extensions.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 3d5830c01c..b71afdd61f 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -873,8 +873,12 @@ make_extension_string_es2(const struct gl_context *ctx, GLubyte *str) if (ctx->Extensions.ARB_vertex_buffer_object) len += append_extension(&str, "GL_OES_mapbuffer"); +#if 0 + /* disabled because of missing GLSL support */ if (ctx->Extensions.EXT_texture3D) len += append_extension(&str, "GL_OES_texture_3D"); +#endif + if (ctx->Extensions.ARB_texture_non_power_of_two) len += append_extension(&str, "GL_OES_texture_npot"); if (ctx->Extensions.EXT_texture_filter_anisotropic) |