librashader/librashader-runtime-wgpu/src/lib.rs
2024-02-06 19:04:28 -05:00

28 lines
624 B
Rust

//! 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 buffer;
mod draw_quad;
mod error;
mod filter_chain;
mod filter_pass;
mod framebuffer;
mod graphics_pipeline;
mod handle;
mod luts;
mod mipmap;
mod options;
mod samplers;
mod texture;
mod util;
pub use filter_chain::FilterChainWGPU;
pub use filter_pass::FilterPass;
pub use framebuffer::OutputView;