rustial-renderer-wgpu 0.0.1

Pure WGPU renderer for the rustial 2.5D map engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![warn(missing_docs)]
#![cfg_attr(not(test), deny(clippy::unwrap_used))]
//! # rustial-renderer-wgpu
//!
//! Pure WGPU renderer for the rustial 2.5D map engine.
//!
//! This crate owns all GPU resources (pipelines, buffers, textures, shaders).
//! The host application provides a `wgpu::Device` and `wgpu::Queue`.
pub mod gpu;
pub mod painter;
pub mod pipeline;

mod renderer;

pub use gpu::terrain_buffers::TerrainInteractionBuffers;
pub use gpu::tile_atlas::AtlasDiagnostics;
pub use renderer::{RenderParams, VisualizationPerfStats, WgpuMapRenderer};