2023-01-21 17:54:06 +11:00
|
|
|
#![cfg(target_os = "windows")]
|
2023-02-17 09:33:47 +11:00
|
|
|
#![deny(unsafe_op_in_unsafe_fn)]
|
2023-01-17 15:09:07 +11:00
|
|
|
//! 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.
|
|
|
|
|
2022-11-22 17:56:39 +11:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2022-11-26 18:38:15 +11:00
|
|
|
#![feature(let_chains)]
|
2022-11-22 17:56:39 +11:00
|
|
|
|
2023-02-07 13:56:30 +11:00
|
|
|
mod draw_quad;
|
2022-12-01 09:59:55 +11:00
|
|
|
mod filter_chain;
|
2022-11-26 18:38:15 +11:00
|
|
|
mod filter_pass;
|
2022-11-30 17:38:05 +11:00
|
|
|
mod framebuffer;
|
2023-02-07 16:51:35 +11:00
|
|
|
mod graphics_pipeline;
|
2022-12-22 13:39:31 +11:00
|
|
|
mod parameters;
|
2022-11-30 17:38:05 +11:00
|
|
|
mod samplers;
|
2022-11-26 18:38:15 +11:00
|
|
|
mod texture;
|
2022-11-24 17:37:16 +11:00
|
|
|
mod util;
|
2022-11-07 16:25:11 +11:00
|
|
|
|
2023-02-16 16:39:36 +11:00
|
|
|
pub mod error;
|
|
|
|
pub mod options;
|
|
|
|
|
2023-01-14 08:55:50 +11:00
|
|
|
pub use filter_chain::FilterChainD3D11;
|
2023-01-13 18:54:16 +11:00
|
|
|
pub use texture::D3D11InputView;
|
|
|
|
pub use texture::D3D11OutputView;
|