diff options
author | Brian Paul <[email protected]> | 2013-01-28 11:31:33 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-01-29 08:59:53 -0700 |
commit | 8f3c81d0182b10d99976dd0a80f10eebebf54017 (patch) | |
tree | 8e0b0b4b599ec4cb7a8f90cff394c9db669403d0 /src | |
parent | 2180f3297285e96d7b69e1cef4414461ba42b0d2 (diff) |
mesa: don't enable GL_EXT_framebuffer_multisample for software drivers
Note: This is a candidate for the 9.0 branch.
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/extensions.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index 7ae07fb5a09..7a8195a2bde 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -418,7 +418,6 @@ _mesa_enable_sw_extensions(struct gl_context *ctx) ctx->Extensions.EXT_fog_coord = GL_TRUE; ctx->Extensions.EXT_framebuffer_object = GL_TRUE; ctx->Extensions.EXT_framebuffer_blit = GL_TRUE; - ctx->Extensions.EXT_framebuffer_multisample = GL_TRUE; ctx->Extensions.EXT_packed_depth_stencil = GL_TRUE; ctx->Extensions.EXT_pixel_buffer_object = GL_TRUE; ctx->Extensions.EXT_point_parameters = GL_TRUE; |