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)]
|
|
|
|
|
2024-02-06 16:29:45 +11:00
|
|
|
mod buffer;
|
2023-12-16 22:28:41 +11:00
|
|
|
mod draw_quad;
|
|
|
|
mod filter_chain;
|
2023-11-30 17:49:22 +11:00
|
|
|
mod filter_pass;
|
2024-02-06 16:29:45 +11:00
|
|
|
mod framebuffer;
|
2023-11-30 17:49:22 +11:00
|
|
|
mod graphics_pipeline;
|
2024-02-06 17:45:31 +11:00
|
|
|
mod handle;
|
2024-02-06 16:29:45 +11:00
|
|
|
mod luts;
|
2024-02-06 17:31:53 +11:00
|
|
|
mod mipmap;
|
2023-12-15 00:47:33 +11:00
|
|
|
mod samplers;
|
2023-12-16 22:28:41 +11:00
|
|
|
mod texture;
|
|
|
|
mod util;
|
2023-11-30 17:49:22 +11:00
|
|
|
|
2024-02-07 10:42:32 +11:00
|
|
|
pub use filter_chain::FilterChainWgpu;
|
2024-02-07 10:47:05 +11:00
|
|
|
pub use framebuffer::WgpuOutputView;
|
2024-02-07 10:42:32 +11:00
|
|
|
|
|
|
|
pub mod error;
|
2024-02-08 15:06:38 +11:00
|
|
|
pub mod options;
|
2024-02-12 10:01:00 +11:00
|
|
|
|
|
|
|
use librashader_runtime::impl_filter_chain_parameters;
|
|
|
|
impl_filter_chain_parameters!(FilterChainWgpu);
|