radeon: Enable GL_EXT_framebuffer_blit
authorIan Romanick <ian.d.romanick@intel.com>
Wed, 13 Nov 2013 21:26:03 +0000 (13:26 -0800)
committerIan Romanick <ian.d.romanick@intel.com>
Mon, 27 Jan 2014 21:21:43 +0000 (14:21 -0700)
The dd_function_table::BlitFramebuffer is already initialized to
_mesa_meta_BlitFramebuffer, so it should just work.

Tested on a Radeon 7500 (OpenGL renderer string: Mesa DRI R100 (RV200
5157) TCL DRI2).  I couldn't do a full piglit run because it would tank
the system with or without this patch.  I just ran all the blit tests
(-t blit to piglit-run.py).  Only fbo-sys-sub-blit failed.  All of the
other tests that weren't skipped (i.e., all the multisample and sRGB
tests skip) passed.

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
docs/relnotes/10.1.html
src/mesa/drivers/dri/radeon/radeon_context.c

index 64268327c86ebdfd5cd303f6f8c0607390229ecf..d2556da997a710ae8167852cc7e70bbb74bf19c0 100644 (file)
@@ -48,7 +48,7 @@ Note: some of the new features are only available with certain drivers.
 <li>GL_ARB_clear_buffer_object</li>
 <li>GL_ARB_viewport_array on i965.</li>
 <li>GL_AMD_shader_trinary_minmax.</li>
-<li>GL_EXT_framebuffer_blit on r200.</li>
+<li>GL_EXT_framebuffer_blit on r200 and radeon.</li>
 <li>Reduced memory usage for display lists.</li>
 <li>OpenGL 3.3 support on nv50, nvc0</li>
 </ul>
index 7d65e2eb5977cc26adddc6b211c3a3ca2552b410..c4f37aa8b7fce2702485651d07f337563c41d2da 100644 (file)
@@ -336,6 +336,7 @@ r100CreateContext( gl_api api,
    ctx->Extensions.ARB_texture_mirror_clamp_to_edge = true;
    ctx->Extensions.ATI_texture_env_combine3 = true;
    ctx->Extensions.ATI_texture_mirror_once = true;
+   ctx->Extensions.EXT_framebuffer_blit = true;
    ctx->Extensions.EXT_texture_env_dot3 = true;
    ctx->Extensions.EXT_texture_filter_anisotropic = true;
    ctx->Extensions.EXT_texture_mirror_clamp = true;