wgpu-primitives 0.4.0

Composable GPU primitives for Rust applications using wgpu.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod common;

pub mod context;
pub mod error;
pub mod profiling;
pub mod scan;
pub mod sort;

pub use context::Context;
pub use error::Error;
pub use profiling::{GpuProfile, GpuTimestampSpan};
pub use scan::Scanner;
pub use sort::{KeyValue, KeyValueSorter, Sorter};