gallium: remove unneeded protos, #includes, etc
authorBrian <brian.paul@tungstengraphics.com>
Tue, 22 Jan 2008 03:51:03 +0000 (20:51 -0700)
committerBrian <brian.paul@tungstengraphics.com>
Tue, 22 Jan 2008 04:17:21 +0000 (21:17 -0700)
src/mesa/pipe/softpipe/sp_surface.h

index f06a325..22de3ba 100644 (file)
 #ifndef SP_SURFACE_H
 #define SP_SURFACE_H
 
-#include "sp_headers.h"
-#include "pipe/p_state.h"
 
-struct pipe_context;
 struct softpipe_context;
 
 
 extern void
-softpipe_get_tile(struct pipe_context *pipe, struct pipe_surface *ps,
-                  uint x, uint y, uint w, uint h, void *p, int dst_stride);
-
-extern void
-softpipe_put_tile(struct pipe_context *pipe, struct pipe_surface *ps,
-                  uint x, uint y, uint w, uint h,
-                  const void *p, int src_stride);
-
-extern void
-softpipe_get_tile_rgba(struct pipe_context *pipe,
-                       struct pipe_surface *ps,
-                       uint x, uint y, uint w, uint h,
-                       float *p);
-
-extern void
-softpipe_put_tile_rgba(struct pipe_context *pipe,
-                       struct pipe_surface *ps,
-                       uint x, uint y, uint w, uint h,
-                       const float *p);
-
-
-extern void
 sp_init_surface_functions(struct softpipe_context *sp);