librashader/librashader-runtime-wgpu/src/lib.rs

28 lines
604 B
Rust
Raw Normal View History

2023-11-30 01:49:22 -05: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)]
mod buffer;
mod draw_quad;
mod filter_chain;
2023-11-30 01:49:22 -05:00
mod filter_pass;
mod framebuffer;
2023-11-30 01:49:22 -05:00
mod graphics_pipeline;
2024-02-06 01:45:31 -05:00
mod handle;
mod luts;
2024-02-06 01:31:53 -05:00
mod mipmap;
2023-12-14 22:47:33 +09:00
mod samplers;
mod texture;
mod util;
2023-11-30 01:49:22 -05:00
2024-02-06 18:42:32 -05:00
pub use filter_chain::FilterChainWgpu;
pub use framebuffer::WgpuOutputView;
2024-02-06 18:42:32 -05:00
pub mod error;
pub mod options;