librashader/librashader-runtime-wgpu/src/lib.rs

20 lines
500 B
Rust
Raw Normal View History

2023-11-30 01:49:22 -05:00
//! librashader WGPU runtime
//!
//! This crate should not be used directly.
//! See [`librashader::runtime::wgpu`](https://docs.rs/librashader/latest/librashader/runtime/wgpu/index.html) instead.
#![deny(unsafe_op_in_unsafe_fn)]
#![feature(type_alias_impl_trait)]
#![feature(let_chains)]
#![feature(strict_provenance)]
mod filter_chain;
mod error;
mod texture;
mod filter_pass;
mod graphics_pipeline;
2023-12-12 19:02:49 -05:00
mod util;
2023-12-14 22:47:33 +09:00
mod samplers;
2023-11-30 01:49:22 -05:00
pub use filter_chain::FilterChainWGPU;
pub use filter_pass::FilterPass;