diff options
author | Ian Romanick <[email protected]> | 2010-09-27 14:29:12 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-09-27 15:23:13 -0700 |
commit | 4da5f1b7c52fb02a3b2baa846931c2dd5ee1b92e (patch) | |
tree | 18bbd3feb07646bac90c2b58a645dec0f5e248c3 /src/mesa/main/extensions.c | |
parent | a73c6ce67b272b71dc814b3384d8c1c99f6c75e3 (diff) |
mesa: Force GL_ARB_copy_buffer to always be enabled
As per discussions at XDS.
Diffstat (limited to 'src/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index c5febc77cff..fe7eade3ebf 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -45,7 +45,7 @@ static const struct { int flag_offset; } default_extensions[] = { { OFF, "GL_ARB_blend_func_extended", F(ARB_blend_func_extended) }, - { OFF, "GL_ARB_copy_buffer", F(ARB_copy_buffer) }, + { ON, "GL_ARB_copy_buffer", F(ARB_copy_buffer) }, { OFF, "GL_ARB_depth_buffer_float", F(ARB_depth_buffer_float) }, { OFF, "GL_ARB_depth_clamp", F(ARB_depth_clamp) }, { OFF, "GL_ARB_depth_texture", F(ARB_depth_texture) }, @@ -229,7 +229,7 @@ static const struct { void _mesa_enable_sw_extensions(GLcontext *ctx) { - ctx->Extensions.ARB_copy_buffer = GL_TRUE; + /*ctx->Extensions.ARB_copy_buffer = GL_TRUE;*/ ctx->Extensions.ARB_depth_clamp = GL_TRUE; ctx->Extensions.ARB_depth_texture = GL_TRUE; /*ctx->Extensions.ARB_draw_buffers = GL_TRUE;*/ |