Revert "minedmap: store region list in BTreeSet"

This reverts commit b53d34da3d.

With the change of the mipmapper data structure, we need a conversion
step anyways, so we can keep using the Vec before mipmapping.
This commit is contained in:
Matthias Schiffer 2023-07-02 22:19:35 +02:00
parent b63a18ad6f
commit f9fc9efe8d
Signed by: neocturne
GPG key ID: 16EF3F64CB201D9C
4 changed files with 10 additions and 12 deletions

View file

@ -26,8 +26,8 @@ fn main() -> Result<()> {
let config = Config::new(args);
let regions = RegionProcessor::new(&config).run()?;
TileRenderer::new(&config).run(regions.iter().copied())?;
TileMipmapper::new(&config).run(regions)?;
TileRenderer::new(&config).run(&regions)?;
TileMipmapper::new(&config).run(&regions)?;
Ok(())
}