librashader/librashader-runtime-d3d11/src/options.rs

28 lines
857 B
Rust
Raw Normal View History

2023-01-13 03:19:58 -05:00
//! Direct3D11 shader runtime options.
2022-12-04 22:48:57 -05:00
/// Options for each Direct3D11 shader frame.
2022-11-30 19:05:12 -05:00
#[repr(C)]
#[derive(Debug, Clone)]
pub struct FrameOptionsD3D11 {
2022-12-04 22:48:57 -05:00
/// Whether or not to clear the history buffers.
2022-11-30 19:05:12 -05:00
pub clear_history: bool,
2023-02-06 00:26:27 -05:00
/// The direction of rendering.
/// -1 indicates that the frames are played in reverse order.
2022-12-04 22:36:14 -05:00
pub frame_direction: i32,
2022-11-30 19:05:12 -05:00
}
2022-12-04 22:48:57 -05:00
/// Options for Direct3D11 filter chain creation.
2022-11-30 19:05:12 -05:00
#[repr(C)]
#[derive(Debug, Clone)]
pub struct FilterChainOptionsD3D11 {
2022-12-04 22:48:57 -05:00
/// Use a deferred context to record shader rendering state.
///
/// The deferred context will be executed on the immediate context
/// with `RenderContextState = true`.
2022-11-30 19:05:12 -05:00
pub use_deferred_context: bool,
/// Whether or not to explicitly disable mipmap
/// generation regardless of shader preset settings.
pub force_no_mipmaps: bool,
2022-11-30 19:05:12 -05:00
}