Mesa (master): r200: Enable GL_EXT_framebuffer_blit

Ian Romanick idr at kemper.freedesktop.org
Mon Jan 27 21:22:30 UTC 2014


Module: Mesa
Branch: master
Commit: bed51a48589e5f5967cd38ade2adfbb874e54dfd
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=bed51a48589e5f5967cd38ade2adfbb874e54dfd

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Wed Nov 13 13:25:04 2013 -0800

r200: Enable GL_EXT_framebuffer_blit

The dd_function_table::BlitFramebuffer is already initialized to
_mesa_meta_BlitFramebuffer, so it should just work.

Tested on a FireGL 8800 (OpenGL renderer string: Mesa DRI R200 (R200
5148) TCL DRI).

Signed-off-by: Ian Romanick <ian.d.romanick at intel.com>
Reviewed-by: Alex Deucher <alexander.deucher at amd.com>
Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>

---

 docs/relnotes/10.1.html                  |    1 +
 src/mesa/drivers/dri/r200/r200_context.c |    1 +
 2 files changed, 2 insertions(+)

diff --git a/docs/relnotes/10.1.html b/docs/relnotes/10.1.html
index 2a25ad0..6426832 100644
--- a/docs/relnotes/10.1.html
+++ b/docs/relnotes/10.1.html
@@ -48,6 +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>Reduced memory usage for display lists.</li>
 <li>OpenGL 3.3 support on nv50, nvc0</li>
 </ul>
diff --git a/src/mesa/drivers/dri/r200/r200_context.c b/src/mesa/drivers/dri/r200/r200_context.c
index 637a263..9878d74 100644
--- a/src/mesa/drivers/dri/r200/r200_context.c
+++ b/src/mesa/drivers/dri/r200/r200_context.c
@@ -382,6 +382,7 @@ GLboolean r200CreateContext( gl_api api,
    ctx->Extensions.EXT_blend_equation_separate = true;
    ctx->Extensions.EXT_blend_func_separate = true;
    ctx->Extensions.EXT_blend_minmax = true;
+   ctx->Extensions.EXT_framebuffer_blit = true;
    ctx->Extensions.EXT_gpu_program_parameters = true;
    ctx->Extensions.EXT_point_parameters = true;
    ctx->Extensions.EXT_texture_env_dot3 = true;




More information about the mesa-commit mailing list