Skip to content

Commit

Permalink
intel: Disable ARB_framebuffer_object in ES contexts
Browse files Browse the repository at this point in the history
This patch removes ARB_framebuffer_object from the GLES1 and GLES2
extension lists in intel_extensions_es.c.

Fixes a crash in the Android browser on Ice Cream Sandwich.

The Android browser crashed because it did the following, which is legal
in GLES2 but not in ARB_framebuffer_object.
    glGenFramebuffers(1, &fb);
    glBindFramebuffer(GL_FRAMEBUFFER, fb);
    // render render render...
    glDeleteFramebuffers(1, &fb);
    // go do other stuff...
    glBindFramebuffer(GL_FRAMEBUFFER, fb);
    // This bind unexpectedly failed, and the app panics.

The semantics of glBindFramebuffer specified by ARB_framebuffer_object (a
desktop GL extension) and GLES2 specs are incompatible. The ideal solution
to fix this is to create separate API entry points for glBindFramebuffer,
one for GL and the other for GLES2. But, until that work is complete,
disabling ARB_framebuffer_object in GLES2 contexts safely fixes the problem.

Likewise, the semantics of glBindFramebuffer in ARB_framebuffer_object and
of glBindFramebufferOES in OES_framebuffer_object (a GLES1 extension) are
incompatible. Even though the functions have different names, the semantic
difference still results in a bug because both API calls are implemented
by a single function, _mesa_BindFramebufferEXT, which handles the semantic
difference incorrectly. Again, disabling ARB_framebuffer_object in GLES1
contexts safely fixes this problem.

According to the ARB_framebuffer_object spec, the extension is an
amalgamation of
    EXT_framebuffer_object
    EXT_framebuffer_blit
    EXT_packed_depth_stencil
    EXT_framebuffer_multisample
By disabling this extension, however, no functionality is removed from
GLES1 and GLES2 contexts because 1) the first three extensions are
explicitly enabled in Intel's ES extension lists and 2) no functionality
of the last extension is exposed in an ES context.

Note: This is a candidate for the 8.0 branch.
See-also: http://www.mail-archive.com/mesa-dev@lists.freedesktop.org/msg21006.html
CC: Charles Johnson <charles.f.johnson@intel.com>
CC: Sean Kelley <sean.v.kelley@intel.com>
Reviewed-by: Ian Romanick <idr@freedesktop.org>
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
  • Loading branch information
versalinyaa committed May 7, 2012
1 parent 64c510b commit 1c0f5d8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/mesa/drivers/dri/intel/intel_extensions_es.c
Expand Up @@ -66,7 +66,6 @@ static const char *es1_extensions[] = {
"GL_EXT_blend_func_separate", "GL_EXT_blend_func_separate",
"GL_EXT_blend_subtract", "GL_EXT_blend_subtract",
"GL_OES_draw_texture", "GL_OES_draw_texture",
"GL_ARB_framebuffer_object",
"GL_EXT_framebuffer_object", "GL_EXT_framebuffer_object",
"GL_ARB_point_sprite", "GL_ARB_point_sprite",
"GL_EXT_stencil_wrap", "GL_EXT_stencil_wrap",
Expand All @@ -92,7 +91,6 @@ static const char *es2_extensions[] = {
"GL_NV_blend_square", "GL_NV_blend_square",


/* Optional GLES2 */ /* Optional GLES2 */
"GL_ARB_framebuffer_object",
"GL_ARB_depth_texture", "GL_ARB_depth_texture",
"GL_EXT_framebuffer_object", "GL_EXT_framebuffer_object",


Expand Down

0 comments on commit 1c0f5d8

Please sign in to comment.