awsm-renderer 0.4.2

awsm-renderer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Cluster-LOD (`virtual_geometry`) GPU render pass (Phase B, B.2).
//!
//! Evaluates the per-cluster LOD cut on-device — the GPU form of the CPU
//! reference [`crate::cluster_lod::select_cut_per_cluster`]. Gated by the
//! `virtual_geometry` feature; inert (and byte-identical to today) when off.
//!
//! The compute shader, its bind group, pipeline, and buffers are being built
//! incrementally (see docs/plans/lod.md, B.2-GPU). This module currently hosts
//! the registered cut shader; the pipeline + dispatch + readback follow.

pub mod bind_group;
pub mod buffers;
pub mod pipeline;
pub mod render_pass;
pub mod shader;

pub use render_pass::ClusterPagingInit;