28 lines
604 B
Rust
28 lines
604 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 filter_chain;
|
|
mod filter_pass;
|
|
mod framebuffer;
|
|
mod graphics_pipeline;
|
|
mod handle;
|
|
mod luts;
|
|
mod mipmap;
|
|
mod samplers;
|
|
mod texture;
|
|
mod util;
|
|
|
|
pub use filter_chain::FilterChainWgpu;
|
|
pub use framebuffer::WgpuOutputView;
|
|
|
|
|
|
pub mod error;
|
|
pub mod options; |