maps_rendering 0.4.0

Image rendering and texture management tailored to the maps crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Image rendering and texture management tailored to the [maps](https://crates.io/crates/maps) crate.
//!
//! For fast image editing previews in egui, with arbitrary scale & pose,
//! and potentially very large source images.

pub mod image;
pub mod image_pyramid;
mod rect_helpers;
pub mod render_options;
mod texture_cache;
pub mod texture_request;
pub mod texture_state;

// Re-export commonly used structs and types.
pub use image_pyramid::ImagePyramid;
pub use render_options::TextureFilter;
pub use texture_request::{ImagePlacement, NO_TINT, TextureRequest, TransformedTextureRequest};
pub use texture_state::TextureState;