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)]
|
|
|
|
|
2023-12-16 22:28:41 +11:00
|
|
|
mod draw_quad;
|
2023-11-30 17:49:22 +11:00
|
|
|
mod error;
|
2023-12-16 22:28:41 +11:00
|
|
|
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;
|
2023-12-16 22:28:41 +11:00
|
|
|
mod texture;
|
|
|
|
mod util;
|
|
|
|
mod framebuffer;
|
|
|
|
mod luts;
|
2024-02-02 10:03:21 +11:00
|
|
|
mod options;
|
|
|
|
mod buffer;
|
2023-11-30 17:49:22 +11:00
|
|
|
|
|
|
|
pub use filter_chain::FilterChainWGPU;
|
2023-12-16 22:28:41 +11:00
|
|
|
pub use filter_pass::FilterPass;
|