2023-01-21 01:54:06 -05:00
|
|
|
#![cfg(target_os = "windows")]
|
2023-02-16 17:33:47 -05:00
|
|
|
#![deny(unsafe_op_in_unsafe_fn)]
|
2023-01-16 23:09:07 -05: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.
|
|
|
|
|
2024-09-15 01:36:14 -04:00
|
|
|
#![cfg_attr(not(feature = "stable"), feature(type_alias_impl_trait))]
|
2022-11-22 01:56:39 -05:00
|
|
|
|
2023-02-06 21:56:30 -05:00
|
|
|
mod draw_quad;
|
2022-11-30 17:59:55 -05:00
|
|
|
mod filter_chain;
|
2022-11-26 02:38:15 -05:00
|
|
|
mod filter_pass;
|
2022-11-30 01:38:05 -05:00
|
|
|
mod framebuffer;
|
2023-02-07 00:51:35 -05:00
|
|
|
mod graphics_pipeline;
|
2022-11-30 01:38:05 -05:00
|
|
|
mod samplers;
|
2022-11-26 02:38:15 -05:00
|
|
|
mod texture;
|
2022-11-24 01:37:16 -05:00
|
|
|
mod util;
|
2022-11-07 00:25:11 -05:00
|
|
|
|
2023-02-16 00:39:36 -05:00
|
|
|
pub mod error;
|
2024-03-02 14:32:48 -05:00
|
|
|
mod luts;
|
2023-02-16 00:39:36 -05:00
|
|
|
pub mod options;
|
|
|
|
|
2024-02-11 18:01:00 -05:00
|
|
|
use librashader_runtime::impl_filter_chain_parameters;
|
|
|
|
impl_filter_chain_parameters!(FilterChainD3D11);
|
|
|
|
|
2023-01-13 16:55:50 -05:00
|
|
|
pub use filter_chain::FilterChainD3D11;
|