summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/softpipe/sp_surface.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-20 16:09:17 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-20 16:09:17 -0600
commit49848208cf1faba49a83fb8872a29f6fa910127d (patch)
treeaf7c76c29cbf18a4acb6c8c23bf304758014279d /src/mesa/pipe/softpipe/sp_surface.h
parent03145d864ce21094592ae847fbe8da57c419374e (diff)
Remove obsolete read/write_quad() functions
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_surface.h')
-rw-r--r--src/mesa/pipe/softpipe/sp_surface.h39
1 files changed, 1 insertions, 38 deletions
diff --git a/src/mesa/pipe/softpipe/sp_surface.h b/src/mesa/pipe/softpipe/sp_surface.h
index 522f7612ab..06c0a01aee 100644
--- a/src/mesa/pipe/softpipe/sp_surface.h
+++ b/src/mesa/pipe/softpipe/sp_surface.h
@@ -46,44 +46,7 @@ struct softpipe_tile_cache;
struct softpipe_surface {
struct pipe_surface surface;
- /**
- * Functions for read/writing surface data
- */
- void (*read_quad_f)( struct softpipe_surface *,
- int x, int y,
- float (*rgba)[NUM_CHANNELS] );
-
- void (*read_quad_f_swz)( struct softpipe_surface *,
- int x, int y,
- float (*rrrr)[QUAD_SIZE] );
-
- void (*read_quad_ub)( struct softpipe_surface *,
- int x, int y,
- ubyte (*rgba)[NUM_CHANNELS] );
-
-
- void (*write_quad_f)( struct softpipe_surface *,
- int x, int y,
- float (*rgba)[NUM_CHANNELS] );
-
- void (*write_quad_f_swz)( struct softpipe_surface *,
- int x, int y,
- float (*rrrr)[QUAD_SIZE] );
-
-
- void (*write_quad_ub)( struct softpipe_surface *,
- int x, int y,
- ubyte (*rgba)[NUM_CHANNELS] );
-
- void (*read_quad_z)(struct softpipe_surface *,
- int x, int y, unsigned zzzz[QUAD_SIZE]);
- void (*write_quad_z)(struct softpipe_surface *,
- int x, int y, const unsigned zzzz[QUAD_SIZE]);
-
- void (*read_quad_stencil)(struct softpipe_surface *,
- int x, int y, ubyte ssss[QUAD_SIZE]);
- void (*write_quad_stencil)(struct softpipe_surface *,
- int x, int y, const ubyte ssss[QUAD_SIZE]);
+ /* no softpipe-specific extras now */
};