volren-gpu 0.2.0

wgpu-based GPU volume renderer for volren-rs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! GPU-accelerated volume renderer using [wgpu](https://wgpu.rs).
//!
//! This crate depends on [`volren_core`] for all data types and provides the
//! wgpu rendering pipeline. It is deliberately separated so that headless
//! pipelines (testing, server-side processing) can depend only on `volren-core`.

#![deny(missing_docs)]
#![deny(unsafe_code)]
#![warn(clippy::all)]

pub mod renderer;
pub(crate) mod texture;
pub(crate) mod uniforms;

pub use renderer::{CrosshairParams, OrientationLabels, RenderError, Viewport, VolumeRenderer};