From de80660c2bd43db112b6c82d970660ed9806cd33 Mon Sep 17 00:00:00 2001 From: Marek Olšák Date: Thu, 13 Sep 2012 19:38:25 +0200 Subject: gallium: remove resource_resolve MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The functionality is provided by the new blit function. Tested-by: Michel Dänzer Reviewed-by: Brian Paul --- src/gallium/drivers/r300/r300_render.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gallium/drivers/r300/r300_render.c') diff --git a/src/gallium/drivers/r300/r300_render.c b/src/gallium/drivers/r300/r300_render.c index e388260894c..198ab73d257 100644 --- a/src/gallium/drivers/r300/r300_render.c +++ b/src/gallium/drivers/r300/r300_render.c @@ -1254,6 +1254,7 @@ done: r300->sprite_coord_enable = last_sprite_coord_enable; } +#if 0 static void r300_resource_resolve(struct pipe_context *pipe, const struct pipe_resolve_info *info) { @@ -1303,6 +1304,7 @@ static void r300_resource_resolve(struct pipe_context *pipe, pipe_surface_reference(&srcsurf, NULL); pipe_surface_reference(&dstsurf, NULL); } +#endif void r300_init_render_functions(struct r300_context *r300) { @@ -1313,8 +1315,6 @@ void r300_init_render_functions(struct r300_context *r300) r300->context.draw_vbo = r300_swtcl_draw_vbo; } - r300->context.resource_resolve = r300_resource_resolve; - /* Plug in the two-sided stencil reference value fallback if needed. */ if (!r300->screen->caps.is_r500) r300_plug_in_stencil_ref_fallback(r300); -- cgit v1.2.3