summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/nv50/nv50_surface.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/pipe/nv50/nv50_surface.c')
-rw-r--r--src/mesa/pipe/nv50/nv50_surface.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/mesa/pipe/nv50/nv50_surface.c b/src/mesa/pipe/nv50/nv50_surface.c
index d207994688..cfb370da77 100644
--- a/src/mesa/pipe/nv50/nv50_surface.c
+++ b/src/mesa/pipe/nv50/nv50_surface.c
@@ -43,19 +43,6 @@ nv50_get_tex_surface(struct pipe_context *pipe,
}
static void
-nv50_surface_data(struct pipe_context *pipe, struct pipe_surface *dest,
- unsigned destx, unsigned desty, const void *src,
- unsigned src_stride, unsigned srcx, unsigned srcy,
- unsigned width, unsigned height)
-{
- struct nv50_context *nv50 = (struct nv50_context *)pipe;
- struct nouveau_winsys *nvws = nv50->nvws;
-
- nvws->surface_data(nvws, dest, destx, desty, src, src_stride,
- srcx, srcy, width, height);
-}
-
-static void
nv50_surface_copy(struct pipe_context *pipe, struct pipe_surface *dest,
unsigned destx, unsigned desty, struct pipe_surface *src,
unsigned srcx, unsigned srcy, unsigned width, unsigned height)
@@ -82,9 +69,6 @@ void
nv50_init_surface_functions(struct nv50_context *nv50)
{
nv50->pipe.get_tex_surface = nv50_get_tex_surface;
- nv50->pipe.get_tile = pipe_get_tile_raw;
- nv50->pipe.put_tile = pipe_put_tile_raw;
- nv50->pipe.surface_data = nv50_surface_data;
nv50->pipe.surface_copy = nv50_surface_copy;
nv50->pipe.surface_fill = nv50_surface_fill;
}