wgpu_3dgs_core/
lib.rs

1#![doc = include_str!("../README.md")]
2
3mod buffer;
4mod compute_bundle;
5mod error;
6mod gaussian;
7mod gaussian_config;
8pub mod shader;
9mod source_format;
10
11pub use buffer::*;
12pub use compute_bundle::*;
13pub use error::*;
14pub use gaussian::*;
15pub use gaussian_config::*;
16pub use source_format::*;
17
18pub use glam;
19pub use wgpu;