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

23 lines
542 B
Rust
Raw Normal View History

2023-11-30 17:49:22 +11: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 draw_quad;
2023-11-30 17:49:22 +11:00
mod error;
mod filter_chain;
2023-11-30 17:49:22 +11:00
mod filter_pass;
mod graphics_pipeline;
2023-12-15 00:47:33 +11:00
mod samplers;
mod texture;
mod util;
mod framebuffer;
mod luts;
2023-11-30 17:49:22 +11:00
pub use filter_chain::FilterChainWGPU;
pub use filter_pass::FilterPass;