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

25 lines
763 B
Rust
Raw Normal View History

2022-12-05 14:48:57 +11:00
/// Options for each Direct3D11 shader frame.
2022-12-01 11:05:12 +11:00
#[repr(C)]
#[derive(Debug, Clone)]
2023-01-13 18:32:21 +11:00
pub struct FrameOptions {
2022-12-05 14:48:57 +11:00
/// Whether or not to clear the history buffers.
2022-12-01 11:05:12 +11:00
pub clear_history: bool,
2022-12-05 14:48:57 +11:00
/// The direction of the frame. 1 should be vertical.
2022-12-05 14:36:14 +11:00
pub frame_direction: i32,
2022-12-01 11:05:12 +11:00
}
2022-12-05 14:48:57 +11:00
/// Options for Direct3D11 filter chain creation.
2022-12-01 11:05:12 +11:00
#[repr(C)]
#[derive(Debug, Clone)]
2023-01-13 18:32:21 +11:00
pub struct FilterChainOptions {
2022-12-05 14:48:57 +11:00
/// Use a deferred context to record shader rendering state.
///
/// The deferred context will be executed on the immediate context
/// with `RenderContextState = true`.
2022-12-01 11:05:12 +11: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-12-01 11:05:12 +11:00
}