app: Remove tile_manager_tiles_per_col() and _per_row()
Remove tile_manager_tiles_per_col() and tile_manager_tiles_per_row(). They were used in the projection pyramid before TilePyramid was created and are not used any longer.
This commit is contained in:
parent
b85c0cc813
commit
314d802eb0
2 changed files with 0 additions and 18 deletions
|
|
@ -575,22 +575,6 @@ tile_manager_bpp (const TileManager *tm)
|
|||
return tm->bpp;
|
||||
}
|
||||
|
||||
gint
|
||||
tile_manager_tiles_per_col (const TileManager *tm)
|
||||
{
|
||||
g_return_val_if_fail (tm != NULL, 0);
|
||||
|
||||
return tm->ntile_cols;
|
||||
}
|
||||
|
||||
gint
|
||||
tile_manager_tiles_per_row (const TileManager *tm)
|
||||
{
|
||||
g_return_val_if_fail (tm != NULL, 0);
|
||||
|
||||
return tm->ntile_rows;
|
||||
}
|
||||
|
||||
gint64
|
||||
tile_manager_get_memsize (const TileManager *tm,
|
||||
gboolean sparse)
|
||||
|
|
|
|||
|
|
@ -95,8 +95,6 @@ void tile_manager_invalidate_area (TileManager *tm,
|
|||
gint tile_manager_width (const TileManager *tm);
|
||||
gint tile_manager_height (const TileManager *tm);
|
||||
gint tile_manager_bpp (const TileManager *tm);
|
||||
gint tile_manager_tiles_per_col (const TileManager *tm);
|
||||
gint tile_manager_tiles_per_row (const TileManager *tm);
|
||||
|
||||
gint64 tile_manager_get_memsize (const TileManager *tm,
|
||||
gboolean sparse);
|
||||
|
|
|
|||
Loading…
Reference in a new issue