llvmpipe: Handle disabled blending too.
[mesa.git] / src / gallium / drivers / llvmpipe / lp_tile_cache.h
index 1cc5a17bb59f0c550946b9296946f3101d4db26a..19676392dcfaeab5816a91c3837dd048d2126954 100644 (file)
@@ -126,13 +126,6 @@ lp_tile_cache_map_transfers(struct llvmpipe_tile_cache *tc);
 extern void
 lp_tile_cache_unmap_transfers(struct llvmpipe_tile_cache *tc);
 
-extern void
-lp_tile_cache_set_texture(struct llvmpipe_tile_cache *tc,
-                          struct pipe_texture *texture);
-
-void
-lp_tile_cache_validate_texture(struct llvmpipe_tile_cache *tc);
-
 extern void
 lp_flush_tile_cache(struct llvmpipe_tile_cache *tc);
 
@@ -144,10 +137,6 @@ extern struct llvmpipe_cached_tile *
 lp_find_cached_tile(struct llvmpipe_tile_cache *tc, 
                     union tile_address addr );
 
-extern const struct llvmpipe_cached_tile *
-lp_find_cached_tile_tex(struct llvmpipe_tile_cache *tc, 
-                         union tile_address addr );
-
 static INLINE const union tile_address
 tile_address( unsigned x,
               unsigned y,
@@ -169,17 +158,6 @@ tile_address( unsigned x,
 
 /* Quickly retrieve tile if it matches last lookup.
  */
-static INLINE const struct llvmpipe_cached_tile *
-lp_get_cached_tile_tex(struct llvmpipe_tile_cache *tc, 
-                         union tile_address addr )
-{
-   if (tc->last_tile->addr.value == addr.value)
-      return tc->last_tile;
-
-   return lp_find_cached_tile_tex( tc, addr );
-}
-
-
 static INLINE struct llvmpipe_cached_tile *
 lp_get_cached_tile(struct llvmpipe_tile_cache *tc, 
                    int x, int y )