26 lines
582 B
Rust
26 lines
582 B
Rust
#![cfg(target_os = "windows")]
|
|
//! librashader Direct3D 11 runtime
|
|
//!
|
|
//! This crate should not be used directly.
|
|
//! See [`librashader::runtime::d3d11`](https://docs.rs/librashader/latest/librashader/runtime/d3d11/index.html) instead.
|
|
|
|
#![feature(type_alias_impl_trait)]
|
|
#![feature(let_chains)]
|
|
|
|
mod draw_quad;
|
|
mod filter_chain;
|
|
mod filter_pass;
|
|
mod framebuffer;
|
|
mod graphics_pipeline;
|
|
mod parameters;
|
|
mod samplers;
|
|
mod texture;
|
|
mod util;
|
|
|
|
pub mod error;
|
|
pub mod options;
|
|
|
|
pub use filter_chain::FilterChainD3D11;
|
|
pub use texture::D3D11InputView;
|
|
pub use texture::D3D11OutputView;
|