softpipe: remove unused functions

Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
Marek Olšák
2012-10-09 15:05:58 +02:00
parent 1c02075df0
commit 9fe06f8815
2 changed files with 0 additions and 26 deletions
@@ -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.
@@ -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);