Mesa (master): softpipe: remove unused functions

Marek Olšák mareko at kemper.freedesktop.org
Thu Oct 11 19:53:54 UTC 2012


Module: Mesa
Branch: master
Commit: 9fe06f88158e2866c5979955214c3af253cabf2a
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9fe06f88158e2866c5979955214c3af253cabf2a

Author: Marek Olšák <maraeo at gmail.com>
Date:   Tue Oct  9 15:05:58 2012 +0200

softpipe: remove unused functions

Reviewed-by: Brian Paul <brianp at vmware.com>

---

 src/gallium/drivers/softpipe/sp_tex_tile_cache.c |   19 -------------------
 src/gallium/drivers/softpipe/sp_tex_tile_cache.h |    7 -------
 2 files changed, 0 insertions(+), 26 deletions(-)

diff --git a/src/gallium/drivers/softpipe/sp_tex_tile_cache.c b/src/gallium/drivers/softpipe/sp_tex_tile_cache.c
index b2e9238..7e1ac6c 100644
--- a/src/gallium/drivers/softpipe/sp_tex_tile_cache.c
+++ b/src/gallium/drivers/softpipe/sp_tex_tile_cache.c
@@ -85,25 +85,6 @@ sp_destroy_tex_tile_cache(struct softpipe_tex_tile_cache *tc)
 }
 
 
-
-
-void
-sp_tex_tile_cache_map_transfers(struct softpipe_tex_tile_cache *tc)
-{
-   if (tc->tex_trans && !tc->tex_trans_map)
-      tc->tex_trans_map = tc->pipe->transfer_map(tc->pipe, tc->tex_trans);
-}
-
-
-void
-sp_tex_tile_cache_unmap_transfers(struct softpipe_tex_tile_cache *tc)
-{
-   if (tc->tex_trans_map) {
-      tc->pipe->transfer_unmap(tc->pipe, tc->tex_trans);
-      tc->tex_trans_map = NULL;
-   }
-}
-
 /**
  * Invalidate all cached tiles for the cached texture.
  * Should be called when the texture is modified.
diff --git a/src/gallium/drivers/softpipe/sp_tex_tile_cache.h b/src/gallium/drivers/softpipe/sp_tex_tile_cache.h
index 4098aa1..09e0f46 100644
--- a/src/gallium/drivers/softpipe/sp_tex_tile_cache.h
+++ b/src/gallium/drivers/softpipe/sp_tex_tile_cache.h
@@ -106,13 +106,6 @@ sp_create_tex_tile_cache( struct pipe_context *pipe );
 extern void
 sp_destroy_tex_tile_cache(struct softpipe_tex_tile_cache *tc);
 
-
-extern void
-sp_tex_tile_cache_map_transfers(struct softpipe_tex_tile_cache *tc);
-
-extern void
-sp_tex_tile_cache_unmap_transfers(struct softpipe_tex_tile_cache *tc);
-
 extern void
 sp_tex_tile_cache_set_sampler_view(struct softpipe_tex_tile_cache *tc,
                                    struct pipe_sampler_view *view);




More information about the mesa-commit mailing list