librashader_runtime_wgpu/
lib.rs

1//! librashader WGPU runtime
2//!
3//! This crate should not be used directly.
4//! See [`librashader::runtime::wgpu`](https://docs.rs/librashader/latest/librashader/runtime/wgpu/index.html) instead.
5#![deny(unsafe_op_in_unsafe_fn)]
6#![cfg_attr(not(feature = "stable"), feature(type_alias_impl_trait))]
7
8mod buffer;
9mod draw_quad;
10mod filter_chain;
11mod filter_pass;
12mod framebuffer;
13mod graphics_pipeline;
14mod handle;
15mod luts;
16mod mipmap;
17mod samplers;
18mod texture;
19mod util;
20
21pub use filter_chain::FilterChainWgpu;
22pub use framebuffer::WgpuOutputView;
23
24pub mod error;
25pub mod options;
26
27use librashader_runtime::impl_filter_chain_parameters;
28impl_filter_chain_parameters!(FilterChainWgpu);