From 161e36c0f7b81a4c1b694b6cbb39138718d4b191 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Fri, 25 Feb 2011 17:34:02 -0800 Subject: [PATCH] mesa: Remove unsupported OES extensions Based commit 19418e921 from master. Chad's extension rework series, of which 19418e921 is part, wasn't cherry picked to 7.9 because there were too many conflicts. Most of the conflicts were caused by extensions that were removed in 7.10. --- src/mesa/main/extensions.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 701247453ba..5f634948fe9 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -869,11 +869,8 @@ make_extension_string_es2(const GLcontext *ctx, GLubyte *str) if (ctx->Extensions.ARB_framebuffer_object) { len += append_extension(&str, "GL_OES_depth24"); - len += append_extension(&str, "GL_OES_depth32"); len += append_extension(&str, "GL_OES_fbo_render_mipmap"); len += append_extension(&str, "GL_OES_rgb8_rgba8"); - len += append_extension(&str, "GL_OES_stencil1"); - len += append_extension(&str, "GL_OES_stencil4"); } if (ctx->Extensions.EXT_vertex_array)