From: Roland Scheidegger Date: Mon, 7 Jun 2010 18:47:54 +0000 (+0200) Subject: softpipe: use util_clear_render_target/depth_stencil fallbacks X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a3dffd76d3408c6da089f467f5cc53b770dbcc86;p=mesa.git softpipe: use util_clear_render_target/depth_stencil fallbacks --- diff --git a/src/gallium/drivers/softpipe/sp_surface.c b/src/gallium/drivers/softpipe/sp_surface.c index 99433f7d1d0..55b27e60100 100644 --- a/src/gallium/drivers/softpipe/sp_surface.c +++ b/src/gallium/drivers/softpipe/sp_surface.c @@ -33,4 +33,6 @@ void sp_init_surface_functions(struct softpipe_context *sp) { sp->pipe.resource_copy_region = util_resource_copy_region; + sp->pipe.clear_render_target = util_clear_render_target; + sp->pipe.clear_depth_stencil = util_clear_depth_stencil; }