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