summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/softpipe/sp_surface.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-01-21 20:51:03 -0700
committerBrian <brian.paul@tungstengraphics.com>2008-01-21 21:17:21 -0700
commita1799ecd82c5a04123d1f06ef7a2e18c6b719f96 (patch)
tree252d28c3d5b772f866d9372559d7b0bcf8f1348b /src/mesa/pipe/softpipe/sp_surface.h
parentb91de8a6e7d74d38698b6dad9f34040e484e69af (diff)
gallium: remove unneeded protos, #includes, etc
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_surface.h')
-rw-r--r--src/mesa/pipe/softpipe/sp_surface.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/mesa/pipe/softpipe/sp_surface.h b/src/mesa/pipe/softpipe/sp_surface.h
index f06a325dae..22de3ba43f 100644
--- a/src/mesa/pipe/softpipe/sp_surface.h
+++ b/src/mesa/pipe/softpipe/sp_surface.h
@@ -31,36 +31,11 @@
#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);