automake: Globally add stub automake targets to the old Makefiles.
[mesa.git] / src / gallium / drivers / softpipe / sp_surface.c
index 6ade7326982f3be59e09ea33bbdfcc819e64a86f..55b27e60100af43028f13a83eeb41457bb677e6c 100644 (file)
  * 
  **************************************************************************/
 
-#include "util/u_rect.h"
+#include "util/u_surface.h"
 #include "sp_context.h"
-
-
+#include "sp_surface.h"
 
 void
 sp_init_surface_functions(struct softpipe_context *sp)
 {
-   sp->pipe.surface_copy = util_surface_copy;
-   sp->pipe.surface_fill = util_surface_fill;
+   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;
 }